



//$(window).unload(function() {
   var currentTime;
   if($.cookie("websitesurvey") == 'taken' || $.cookie("websitesurvey") == 'nothanks') {
	   //alert("cookie is empty");
	//HIDE POPUP FOR NOW     	
	
	//alert($.cookie("websitesurvey"));
	//END OF HIDE
	
	//$('#modalWindow').attr('src', 'http://74.208.133.232/survey/survey_website2010.aspx');
	//$('#modalWindow').show();
	// Cancel the polling loop with id of 'loop'.
	$.doTimeout( 'loop' );
	$.cookie('websitesurveytimer', 0, { expires: 1 });
	currentTime = 0;
   }else{
	   //$.cookie("websitesurvey").length == 0 && 
	
		  
		// Start a polling loop with an id of 'loop' and a counter.
		 //1000 ms = 1 sec
		  $.doTimeout( 'loop', 1000, function(){
			//alert('timer');
			if( $.cookie('websitesurveytimer') == null ) { 
			$.cookie('websitesurveytimer', 1, { expires: 1 });
			currentTime = 1;
			}else{
			currentTime = parseInt($.cookie('websitesurveytimer')) + 1;
			$.cookie('websitesurveytimer', currentTime, { expires: 1 });
			};
			
			//alert(currentTime);
			
			if(currentTime == 300){
			//alert(currentTime);
 window.open('http://disneyinstitute.com/survey/survey_website2010.aspx',"surveywindow","menubar=no,resizable=1,location=no,width=620,height=520");
			};
			return true;
		  });	
		
		

	  
	  
	 // window.open('http://74.208.123.175/survey/survey_website2010.aspx',"surveywindow","menubar=no,resizable=1,location=no,width=620,height=520");
	   //alert($.cookie("websitesurvey"));
   }
//});

