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