function MM_openBrWindow(file,name,opts) {	//  alert(opts);	var test = opts.match(/(height=)(\d+)(,)(width=)(\d+)(.*$)/);    //  alert(test[2]);    var w = parseInt(test[5]);    var h = parseInt(test[2]);    //  alert ("x"+w+"x"+h+"x");			//	alert (w +" "+ h);		newwindow = window.open(file,name,'width='+w+',height='+h);	//	alert(navigator.appVersion+"---- "+navigator.appName);		if (parseInt(navigator.appVersion)>3) {	//	    alert("hey");			if ((navigator.appName=="Netscape") & (parseInt(navigator.appVersion)<5)) {	//		    alert('here');				newwindow.document.innerWidth=w;				newwindow.document.innerHeight=h;			}else {				newwindow.resizeTo(w,h+15); // added 15px to height to deal with bad setup of vars in swf files.	//			alert('resize to '+w+" "+h);			}		}			newwindow.focus();	}		function openNewWindow(url,name,ops2){   		openNewWin = MM_openBrWindow(url,name,ops2);	}