function popWindow(url,w,h)
{
wid = parseInt(w)
heig = parseInt(h)
window.open(url,'Window100','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,Width='+wid+',height='+heig+',screenX=150,screenY=150,top=150,left=150')
}
function popWindowWin(url,wn,w,h)
{
wid = parseInt(w)
heig = parseInt(h)
window.open(url,wn,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no,Width='+wid+',height='+heig+',screenX=150,screenY=150,top=150,left=150')
}