// JavaScript Document

function openWin(strLink,strName,numWidth,numHeight){
void window.open(strLink,strName,'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width='+numWidth+',height='+numHeight+',left='+Math.max(parseInt((screen.width-numWidth)/2),0)+',top='+Math.max(parseInt((screen.height-numHeight)/3),0)).focus();
return false;
}
