var newwindow;
function pop(url,name,args)
	{
		newwindow=window.open(url,name,args);
		if (window.focus)
			{
				newwindow.focus()
			}
	}