// JavaScript Document

function ShowBox(theValue){
		if ( theValue == '1' ) {
				  document.getElementById( 'm2'  ).style.display = 'none';
				  document.getElementById( 'm4'  ).style.display = 'none';
				  document.getElementById( 'm3'  ).style.display = '';
		}
			if ( theValue == '5' ) {
				  document.getElementById( 'm3'  ).style.display = 'none';
				  document.getElementById( 'm4'  ).style.display = '';
				  document.getElementById( 'm2'  ).style.display = '';
		}
	
}

function ShowBox1(theValue){
		if ( theValue == '1' ) {
				 
				  if (document.getElementById( 'm8'  ).style.display =='none')
						{
  				  document.getElementById( 'm8'  ).style.display = '';
				  document.getElementById( 'm9'  ).style.display = 'none';
						}else{
  				  document.getElementById( 'm8'  ).style.display = 'none';
				  document.getElementById( 'm9'  ).style.display = 'none';						
						}
				  
				  
		}
		if ( theValue == '2' ) {
		
				if (document.getElementById( 'm9'  ).style.display =='none')
						{
				  document.getElementById( 'm8'  ).style.display = 'none';
				  document.getElementById( 'm9'  ).style.display = '';
						}else{
  				  document.getElementById( 'm8'  ).style.display = 'none';
				  document.getElementById( 'm9'  ).style.display = 'none';						
						}			  
				  
		}		
		
		
	
}


