// JavaScript Document


function MM_openBrWindow(theURL,winName,features) { //v2.0
var x = 0, y = 0; // default values

if (document.all) {
  x = window.screenTop + 120;
  y = window.screenLeft + 150;
}
else if (document.layers) {
  x = window.screenX + 120;
  y = window.screenY + 150;
}
features += ",top="+y+",screenY="+y+",left="+x+",screenX="+x;
  window.open(theURL,winName,features);
}