function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
var newwin;
function launchwin(winurl,winname)  {
	    var bversion = parseInt(navigator.appVersion);  //Get Integer of Browser Version Number (eg. "3")
        var bname = navigator.appName;                          //Get Browser Name, (eg. "Netscape")
      	if (bversion>=4) {
winfeatures='width='+(screen.width - 10)+',height='+(screen.height - 30)+',screenX=0,screenY=0, fullscreen=0,dependent=0,directories=0,location=0,menubar=0,resizable=1,scrollbars=0,toolbar=0,left=0,top=0';
		}
		else  winfeatures='dependent=0,directories=0,location=0,menubar=0,resizable=1,scrollbars=0,toolbar=0';
		newwin = window.open(winurl,winname,winfeatures);		
        //if(javascript_version > 1.0) setTimeout('newwin.focus();',250);
		//if(bname == "Netscape" && bversion == "4") parent.frames[1].location.replace("non_vis.html");
        //else parent.frames[1].history.back();
}
