function poper(url,name,w,h,l,t,r,s,m,tl)
{
	if (!win1.closed && win1.location)
	{
		parm = 'alwaysLowered=0,alwaysRaised=1,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=0,location=0,menubar='+m+',resizable='+r+',scrollbars='+s+',status=0,titlebar=0,toolbar='+tl+',z-lock=0,width='+w+',height='+h+',left='+l+',top='+t;
                               win1=win1.close();
	 	    win1=window.open(url,name,parm);
		if (!win1.opener) win1.opener = self;
		}
	else
	{ 
	 	parm = 'alwaysLowered=0,alwaysRaised=1,channelmode=0,dependent=0,directories=0,fullscreen=0,hotkeys=0,location=0,menubar='+m+',resizable='+r+',scrollbars='+s+',status=0,titlebar=0,toolbar='+tl+',z-lock=0,width='+w+',height='+h+',left='+l+',top='+t;
                               win1=window.open(url,name,parm);
		if (!win1.opener) win1.opener = self;
	}
	if (window.focus) {win1.focus()}
	return false;
}	