
function openwin(myurl,mx,my,name) {
if(name==null){name="popup";}
  nn4 = (document.layers)? true : false;
  ie4 = (document.all)? true : false;
  wx = Math.round((screen.width - mx) / 2);
  wy = Math.round((screen.height - my) / 2)-50;
  wpos = (nn4)? "screenX="+wx+",screenY="+wy : "left="+wx+",top="+wy;
  var a = window.open(myurl,name,"resizable=yes, menubar=no,toolbars=no,scrollbars=yes,width=" + mx + ",height=" + my + "," + wpos);
  if (a != null) {
    a.focus();
  }
 }
 
function openimg(myurl,mx,my,name) {
  if (a!=null){a.close();}
  mx=mx+47;
  my=my+80;
  if(name==null){name="sv";}
  nn4 = (document.layers)? true : false;
  ie4 = (document.all)? true : false;
  wx = Math.round((screen.width - mx) / 2);
  wy = Math.round((screen.height - my) / 2);
  wpos = (nn4)? "screenX="+wx+",screenY="+wy : "left="+wx+",top="+wy;
  var a = window.open(myurl,name,"resizable=no, menubar=no,toolbars=no,scrollbars=yes,width="+mx+",height="+my+"," + wpos);
  if (a != null) {
    a.resizeTo(mx, my);
    a.focus();
  }
 }

