function popW(url,l,t,w,h,hidden)
{
  if (navigator.appName=="Netscape") {ShowWin=window.open("","_blank","toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1");}
  else{if (navigator.appName=="Microsoft Internet Explorer"){ShowWin=window.open("","","toolbar=1,menubar=1,location=1,directories=1,status=1,scrollbars=1,resizable=1");}}
  if (ShowWin!=null)
	{
	if (hidden)
	{
		ShowWin.blur();
		self.focus();
		ShowWin.resizeTo(w,h);ShowWin.moveTo(l,t);ShowWin.location=url;
	}
	else
	{
		ShowWin.blur();
		ShowWin.resizeTo(w,h);ShowWin.moveTo(l,t);ShowWin.location=url;
		ShowWin.focus();
	}
	}
}
function popup(URL)
{
	popW(URL, 10,20,800,700,0);
}