// JavaScript Document

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
var newwin;
function MM_openBrWindow(theURL,winName,features) { //v2.0
if(newwin){
if(!newwin.closed){
newwin.location.href=theURL;
newwin.focus();
}else{
newwin=window.open(theURL,winName,features);
}
}else{
newwin=window.open(theURL,winName,features);
}
}
