// GENERAL
function openWindow(url, name) {
	var popupWidth = arguments.length < 3 ? 500 : arguments[2];
    var popupHeight = arguments.length < 4 ? 350 : arguments[3];
    var posX = ((screen.width/2)-popupWidth/2);
    var posY = ((screen.height/2)-popupHeight/2);
	var scrolling = arguments.length < 5 ? ",scrollbars=1" : ",scrollbars=" + arguments[4];
    var popupProperties = "height="+ popupHeight +",width="+ popupWidth +",screenX="+ posX +",screenY="+posY+",top="+posY+",left="+posX+",location=0,menubars=0,toolbars=0,resizable=1,status=0" + scrolling ;
    popup = window.open(url, name, popupProperties);
}


function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}