 function GetSwfUrl()
  { 
  try
  {
  var surveyid =  document.getElementById("surveyId").value; 

  document.myflash.SetVariable("surveyid", surveyid);
  }
   catch(e)
   {
 
  }
  }
  
  
  function callActionScript() {
  var surveyid = document.getElementById("surveyId").value; 
   try
   {
  var swfvalue = document.myflash.swfValue(surveyid);   
   }
   catch(e)
   {
     
  }
  document.getElementById("flashcookie").value = swfvalue;
 }

  function  isEnabled()
  {
     var ult = window.navigator.javaEnabled();  
     if(ult == false)
     {

     document.mainform.submit();
     } 
  }
  
  

  
  
