function poptastic(url)
{
	newwindow=window.open(url,'name2','height=300,width=400,left=100,top=100,resizable=false,scrollbars=no,toolbar=no,menubar=no,location=no,status=no');
	if (window.focus) {newwindow.focus()}
}
  function PopUp(url)
  {
  window.open (url,"Printable2", "width=800,height=500,location=0,menubar=0,resizable=0,scrollbars=1,statusbar=0,titlebar=1,toolbar=0,screenX=90,screenY=10");
   }



  function SlidePopUp(url,awidth,aheight)
  {
var newrand=Math.round(Math.random() * 100000);
//document.write(newrand="xxx");
  var wname="Printable"+newrand;  var wname=window.open(url,wname,"width="+awidth+",height="+aheight+",location=0,menubar=0,resizable=0,scrollbars=1,statusbar=0,titlebar=1,toolbar=0,screenX=0,screenY=0");
wname.focus();
   }
