	
	var NS = (navigator.appName=="Netscape")?true:false; 
	function printWindow(){ 
		bV = parseInt(navigator.appVersion) 
		if (bV >= 4) window.print() 
	} 
// Enlarge Room	Image Window
	function FitPic() { 
		window.focus() 
		h = document.images[0].height 
		w = document.images[0].width 
       	//alert( w + ',' + h); 
	   	if (w > 800 || h > 600) { 
			window.resizeTo(800,600); 
		}
		else { 
			iWidth = (NS)?window.innerWidth:document.body.clientWidth; 
			iHeight = (NS)?window.innerHeight:document.body.clientHeight; 
			iWidth = document.images[0].width - iWidth + 40; 
			iHeight = document.images[0].height - iHeight + 40; 
			window.resizeBy(iWidth, iHeight); 
		} 
		self.focus(); 
	}; 
	
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}