function view_window(hh,tt,ss,vv) {
var vys;
  vys=window.open("",tt,"menubar=0,resizable=0,toolbar=0,status=0,width="+ss+",height="+vv );
  vys.offscreenBuffering=true;
  vys.focus();
  vys.resizeTo(ss,vv);
  return vys;
}
function view_window1(hh,tt,ss,vv) {
var vys;
  vys=window.open("",tt,"menubar=0,resizable=1,toolbar=0,status=0,width="+ss+",height="+vv );
  vys.offscreenBuffering=true;
  vys.focus();
  vys.resizeTo(ss,vv);
  return vys;
}



