   

 
     
 function writit(id)
{
    var text='<a href="../main.htm">Click here to launch main page </a>';
	if (document.getElementById)
	{
		x = document.getElementById(id);
		x.innerHTML = '';
		x.innerHTML = text;
	}
	else if (document.all)
	{
		x = document.all[id];
		x.innerHTML = text;
	}
	
}     

      

     function launchit() 
     {
         
         if (!exclude && !op5 && !op6 && !op7 && !ns4 && flashinstalled == 2 && flashversion >= 6) 
         {
              writit('launchit')
              
         }
}

  