// JavaScript Document
function TurnOn(boxId) { 
   var box = document.getElementById(boxId).style; 

  turn_off('Intro');
   turn_off('q11');
      turn_off('q2');
	     turn_off('q3');
		    turn_off('q4');
			   turn_off('q5');
			      turn_off('q6');
				     turn_off('q7');
					    turn_off('q8');
						   turn_off('q9');
						      turn_off('q10');
							  	turn_off('q12');
															

   box.display =  ''; 

} 
function turn_off(boxId) { 
   var box = document.getElementById(boxId).style; 
   box.display = 'none' ; 


} 
function _turn_on(boxId) { 
   var box = document.getElementById(boxId).style; 
   box.display = '' ; 


} 
function show_(boxId)
 { 
   var box = document.getElementById(boxId).style; 
   box.visiblility = 'visible' ; 


} 
function hide_(boxId)
 { 
   var box = document.getElementById(boxId).style; 

   box.visiblility = 'hidden' ; 


} 


function TurnOnAll() { 
   _turn_on('Intro');
      _turn_on('q11');
         _turn_on('q2');
	       _turn_on('q3');
		       _turn_on('q4');
			    _turn_on('q5');
			         _turn_on('q6');
				        _turn_on('q7');
					       _turn_on('q8');
						      _turn_on('q9');
						         _turn_on('q10');
								 	 _turn_on('q12');
															



} 
function TurnOnPdf(pdf)
{
	if (document.getElementById(pdf).style.display == "block") 
	 {
		 
          document.getElementById(pdf).style.display = "none"
     }
	  else 
	 {
          document.getElementById(pdf).style.display = "block";
	 }
}