function spawnwindow(windowURL,name,w,h)
{ 
var strOpt="height="+h+",width="+w+",menubar=no,personalbar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no"; 
closeup = window.open(windowURL,"whatever",strOpt); 
closeup.focus();
}

function OpenWindow(windowURL)
{
var str0pt="height=600,width=800,location=yes,menubar=yes,personalbar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes";
closeup = window.open(windowURL,"window",str0pt);
closeup.focus();
}
