function MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}/* Functions that open window2. */function openWin2(file,name,wid,high,check,title) {	if(check == 1){wwid = wid+16;}	else{wwid = wid;}	if(screen.height <= high){whigh=screen.height-56;}else{whigh=high;}	var controlWindow=window.open('',name,'width=' + wwid + ',height=' + whigh +',left=0,top=0,resizable=no,scrollbars=' + check +',toolbar=no,location=no,directories=no,status=no,menubar=no');	controlWindow.document.open();	controlWindow.document.write('<html>');	controlWindow.document.write('<head>');	controlWindow.document.write('<title>' + title +'</title>');	controlWindow.document.write('</head>');	controlWindow.document.write('<body marginwidth=0 marginheight=0 leftmargin=0 topmargin=0>');	controlWindow.document.write('<a href="Javascript:window.close();"><img src='+ file +' width=' + wid + ' height=' + high +' border=0></a>');	controlWindow.document.write('</body>');	controlWindow.document.write('</html>');	controlWindow.document.close();	controlWindow.window.focus();}