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

