function showNews(){
		toggleBox('news',1);
	}
	
	function hideNews(){
			
		toggleBox('news',0);		
	}

	function showAbout(){
	
		toggleBox('about',1);
	}
	
	function hideAbout(){
			
		toggleBox('about',0);		
	}
		function showGuide(){
	
		toggleBox('guide',1);
	}
	
	function hideGuide(){
			
		toggleBox('guide',0);		
	}
		function showCommunity(){
	
		toggleBox('community',1);
	}
	
	function hideCommunity(){
			
		toggleBox('community',0);		
	}
	function showSupport(){
	
		toggleBox('support',1);
	}
	
	function hideSupport(){
			
		toggleBox('support',0);		
	}
	function showDownload(){
	
	}
	
	function hideDownload(){
					
	}
	function showLanguage(){
		toggleBox('language',1);							
	}
	
	function hideLanguage(){
		toggleBox('language',0);						
	}	

function goWinterPromotions() {

	// Set height and width
	var NewWinHeight=537;
	var NewWinWidth=790;

	// Place the window
	var NewWinPutX=350;
	var NewWinPutY=5;

	//Get what is below onto one line
	TheNewWin =window.open("http://www.acclaim.com/winterpromo/acclaimcards.html","","scrollbars=1,resizable=0,toolbar=no,location=no,status=no,menubar=no,dependent=no,titlebar=no, directories=no");


	//Get what is above onto one line
	TheNewWin.resizeTo(NewWinHeight,NewWinWidth);
	TheNewWin.moveTo(NewWinPutX,NewWinPutY);

}