// lazy shortcut
 
d=document;
 
// generic popwindow function, call with name of page, width, height- centered pop

function windowpop(url,name,w,h){
t=((screen.height/2)-(h/2))
l=((screen.width/2)-(w/2))
window.name="daddy";
window.open(url,name,'width='+w+',height='+h+',top='+t+',left='+l+',status=0,toolbar=0,resizable=0, noresize, fullscreen=0, directories=0, scrollbars=0');
}
