// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
//-->

function openWindow(strUrl, strName, intHeight, intWidth, blnResizeable, blnScrollBars)

{

  var winNewPopUp

  if (!winNewPopUp) {

    winNewPopUp = window.open(strUrl,strName,"dependent=yes,directories=no,height=" + intHeight + ",width=" + intWidth + ",location=no,menubar=no,resizable=" + blnResizeable + ",scrollbars=" + blnScrollBars + ",titlebar=no,toolbar=no");

    winNewPopUp.focus();

  }

}

