function popup(url, w, h)
{
popped = window.open (url, "windownew", "height=" +h+ ",width=" +w+ ",toolbar=0,menubar=0,scrollbars=1,resizable=1,location=0,directories=0,status=1,left=0,top=0,screenX=0,screenY=0");
popped.creator = self
}
if (window != top) top.location.href = location.href;
//-->
|