function LoadSurvey()
{

var strBrowserApp = navigator.appName;
var strBrowserPlatform = navigator.platform;


var strBrowserPlatform = navigator.platform;

if ( strBrowserApp.indexOf ( "Microsoft" ) >= 0 || strBrowserApp.indexOf ( "Netscape" ) >= 0 )
   {
	if (strBrowserPlatform.indexOf("Win32") >= 0)
		if (isCookieEnabled())
			{
				goToSurvey();
			}	
		else { 
				//alert("Cookies disabled");//do nothing
			 }	
		//var theTimer3 = setTimeout ( "goToSurvey();", 1000, "JavaScript" );
	else
		{ //window.close();
		}
   }
else
   { 
   	//alert("Other Browser"); 
   }
}

//Survey Ends