  <!--
  
  
		function showContent(show,hide)
		{	
			var show_div = document.getElementById(show);	
			var hide_div = document.getElementById(hide);	
			
			hide_div.className  = 'hide';
			show_div.className  = 'show';
		}
		
		function showDiv(show)
		{	
			var show_div = document.getElementById(show);
			if (show_div.style.display == 'none'){
				show_div.style.display  = 'block';
			}
			else {
				show_div.style.display  = 'none';
			}
		}

	  	
		  // open window function for calculator
		  // ==============================================================================================
		  function openWin() {
		  // ==============================================================================================   
		    
		     window.open("http://www.clsdirect.org.uk/ecalc_citizens/question1.asp?blank=yes&js=yes&launch=yes", "eCalc", "width=790,height=550,scrollbars=yes,resizable=yes,screenx=0,screeny=0,top=0,left=0,location=no,status=yes,toolbar=no"); 
		    
		  }


  //-->