		var startTime;
		
		function CheckStart()
		{
		 var timeNow = new Date();
		 startTime = timeNow.getMinutes();
		}
		
		function OnUnloadCheck()
		{
		 var timeCheck = new Date();
		 var minutesNow = timeCheck.getMinutes();
		 var difference;
		
		 difference = minutesNow - startTime;


		 if(difference>2)
		 {
	 

		 	 var isCookie;
			 isCookie = readCookie('DoneQA');

			 if(isCookie=='NotFound')
			 {
		 	 	//Redirect to questions
			 	window.location = 'visitorQuestions.asp';
			 }
		  }
		}
