function MM_openBrWindow(theURL,winName,features) { //v2.0
  sVerBrowser = navigator.appVersion;
  //confirm(sVerBrowser);
  if (sVerBrowser.charAt(0) == '3') {
        parent.location=theURL;
  }else{
        window.open(theURL,winName,features);
  }
}
