<!--
function MM_openBrWindow(theURL,winName,features) { //v1.2
  window.open(theURL,winName,features);
}

function MM_openWindow(theURL,winName,launchWin,features) { //v1.0
  if (launchWin == ''){
    window.open(theURL,winName,features);
  }
  else{
    var controller = window.open(theURL,winName,features);
    if (controller.opener == null){
      controller.opener = self;
    }
    controller.opener.name = launchWin;
    return controller;
  }
}


function closeBrWindow() { //v1.0
  javascript:self.close();
}
//-->