function openWin(w,h,url) {
  if (navigator.userAgent.indexOf("MSIE 3") != -1) {
    var newWin = window.open(url, "_blank", "width="+(w-10)+",height="+(h-20)+",status=0,resizeable=0,toolbar=no,location=no,directories=no,status=no,menubar=no");
  } else {
    var newWin = window.open(url, "_blank", "width="+w+",height="+h+",status=0,resizeable=0,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no");
    if (navigator.userAgent.indexOf("Mozilla/2") != -1) {
      if ((navigator.userAgent.indexOf("Mac") != -1) || (navigator.userAgent.indexOf("X11") != -1)) {
        newWin = window.open(URL, name)
      }
    }
  }
  if (navigator.appName == "Netscape" && navigator.userAgent.indexOf("Macintosh")<0 && navigator.appVersion.charAt(0) > 2)
  {
    newWin.focus();
  }
}



function loadWindow(URL,w,h,name,s) {
  var width=w;
  var height=h;
  var scroll=s;
  if (navigator.appName == "Microsoft Internet Explorer")
        {
                if (navigator.userAgent.indexOf("Mozilla\/4") != -1)
                {
                height = height +0 //2
                }
        }
  else if (navigator.appName == "Netscape")
        {
                height = height -0 //4

        }
  var newWin = open(URL,name,'width='+width+',height='+height+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars='+scroll+',resizable=no');
  if (navigator.userAgent.indexOf("Mozilla/2") != -1) {
    if ((navigator.userAgent.indexOf("Mac") != -1) || (navigator.userAgent.indexOf("X11") != -1)) {
      newWin = window.open(URL, name)
    }
  }
}


function openWinA(url)

{
subWin=window.open(url, 'subWin', 'toolbar=no,width=180,height=152,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
}

function openWinB(url)

{
subWin=window.open(url, 'subWin', 'toolbar=no,width=240,height=196,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
}

function openWinC(url)

{
subWin=window.open(url, 'subWin', 'toolbar=no,width=320,height=256,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,copyhistory=no');
}
