var win1;
function WinOp(name,width,height){
 height=400;
 width=450;
 win1 = window.open('','win1','width='+width+', height='+height+', scrollbars=no,resizable=no,status=no');
 win1.location = ""+name;
 win1.focus();
}
