
var newwindow;
function openWin(url,h,w)
{
newwindow=window.open(url,'name','height='+h+',width='+w+',resizable=yes,menubar=no,status=no,left=0,top=20');
if (window.focus) {newwindow.focus()}
} 
