<!--

////////////////////// POP UP Window//////////////////////
function popWindow(url, name, width, height, resizable, scrollbars) {
  var str = "height=" + height + ",innerHeight=" + height;
  str += ",width=" + width + ",innerWidth=" + width;
  str += ",resizable=" + resizable + ",scrollbars=" + scrollbars;
  if (window.screen) {
    var ah = screen.availHeight - 0;
    var aw = screen.availWidth - 0;

    var xc = (aw - width) / 2;
    var yc = (ah - height) / 2;

    str += ",left=" + xc + ",screenX=" + xc;
    str += ",top=" + yc + ",screenY=" + yc;
  }
  var win =  window.open(url, name, str);
  if (window.focus) {win.focus()}
}
////////////////////// MM_goToURL//////////////////////
function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
function MM_popupMsg(msg) { //v1.0
  alert(msg);
}

//-->
