	
	function NewWindow(mypage, myname, w, h, scroll) {
		var winl = (screen.width - w) / 2;
		var wint = (screen.height - h) / 2;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll
		win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
	}
	
	function SwitchToHD() {
		 MainImage.src='Images/FP/_HD.gif';		
		 document.getElementById('HD_SPOT_CONTENT').style.display="";
		 HideElements();
	}
	function SwitchToMC() {
		 MainImage.src='Images/FP/_MC.gif';					 
		 document.getElementById('MC_SPOT_CONTENT').style.display="";
		 HideElements();
	}
	function SwitchToINP() {
		 MainImage.src='Images/FP/_iNP.gif';					 
		 document.getElementById('INP_SPOT_CONTENT').style.display="";
		 HideElements();
	}
	function SwitchToMMS() {
		 MainImage.src='Images/FP/_MMS.gif';					 
		 document.getElementById('MMS_SPOT_CONTENT').style.display="";
		 HideElements();
	}												
	
	function SwitchBack() {
		 MainImage.src='Images/FP/_1.gif';					 
		 ShowElements();
	}	
	
	
	function HideElements() {
		 document.getElementById('OutofTheBox_Box_ONE').style.display="none";
		 document.getElementById('OutofTheBox_Box_TWO').style.display="none";
		 document.getElementById('OutofTheBox_Box_THREE').style.display="none";							 
	 					 
	}			
	function ShowElements() {
		 document.getElementById('OutofTheBox_Box_ONE').style.display="";
		 document.getElementById('OutofTheBox_Box_TWO').style.display="";
		 document.getElementById('OutofTheBox_Box_THREE').style.display="";	
		 document.getElementById('HD_SPOT_CONTENT').style.display="none";		
		 document.getElementById('MC_SPOT_CONTENT').style.display="none";		
		 document.getElementById('INP_SPOT_CONTENT').style.display="none";		
		 document.getElementById('MMS_SPOT_CONTENT').style.display="none";							 
	}		
