// JavaScript Document
<!--
function swapContent(myid, objCaller) 
	{
 	    var numSections = 15; // this is the # of options 
 	    // hide all sections
 	    for (var j = 1; j <= numSections; j++) 
	    {
   		    if(document.getElementById('div'+j))
	        {	   		        
   		        document.getElementById('div'+j).style.display='none'; 
   		     //   document.getElementById('div'+j).style.visibility='hidden';
		    }
	    }
	    for (var j = 101; j <= 105; j++) 
	    {
   		    if(document.getElementById('div'+j))
	        {	   		        
   		        document.getElementById('div'+j).style.display='none'; 
   		     //   document.getElementById('div'+j).style.visibility='hidden';
		    }
	    }
 	    // reveal the section we want...
 	    if (document.getElementById('div'+myid)) 
 	    { 
 	        document.getElementById('div'+myid).style.display='block'; 
 	        document.getElementById('div'+myid).style.visibility='visible';	  
 	    }	    
 	    
// 	    document.getElementById('Panel'+myid).style.display='block'; 
 	     	    
 	    var randno = 0;
 	    var numSections1 = 30;
 	     
 	    // hide all sections
 	    for (var j = 21; j <= numSections1; j++) 
	    {
   		    if(document.getElementById('div'+j))
	        {	   		        
   		        document.getElementById('div'+j).style.display='none'; 
		    }
	    }
 	    // reveal the section we want...  	
 	    randno=Math.floor(Math.random()*9) + 21;    
 	    if (document.getElementById('div'+randno)) 
 	    { 
 	        document.getElementById('div'+randno).style.display='block'; 
 	        document.getElementById('div'+randno).style.visibility='visible';	  
 	    }
 	    	    
 	    
 	    // hide all sections
 	 //   alert('hello');
 	//   alert(document.getElementById('table'+myid).id);
 	
 	    for (var j = 1; j <= numSections; j++) 
	    {
   		    
   		    if(document.getElementById('td'+j))
	        {		
   		   //     alert('hello');
   		        document.getElementById('td'+j).style.backgroundColor='#85BBE7'; 
		    }
	    }
 	    // reveal the section we want...
 	    if (myid<100)
 	    {
 	    document.getElementById('td'+myid).style.backgroundColor='#f9f9f9';
 	    }
 	 
 	    
	}

-->