// JavaScript Document

if(screen){ 
topPos=0 
leftPos=0 
} 
function openPop(url,wd,ht,scrollbars,toolbar,status,resize){ 
leftPos= (screen.width-wd)/2 
topPos = (screen.height-ht)/2 
newPop = window.open(url,'Pop','left='+leftPos+',top='+topPos+',width='+wd+',height='+ht+',scrollbars='+scrollbars+',toolbar='+toolbar+',status='+status+',resizable='+resize);
}
