
	
	var t,t2,myglobal;
	myglobal=1;
	function doLoad() {
		
		
		//christian 11/7/2008  
		// This is to prevent user from clicking back button
		
	//	history.go(1);
		
		/// fix end 
		
		mm="timed out";
		if (myglobal==1){
			t = setTimeout("warning();",600000);
			t2 = setTimeout("expired();",900000);
			//t = setTimeout("warning();",5000);
			//t2 = setTimeout("expired();",10000);
		}	
	}
	
	function warning(){
		aWindow=window.open("warning.html","thewindow","toolbar=no,width=300,height=250,status=no,scrollbars=no,menubar=no,left=350,top=350");
		
	}
	function expired(){
		aWindow=window.open("expired.html","thewindow","toolbar=no,width=300,height=250,status=no,scrollbars=no,menubar=no,left=350,top=350");
		myglobal=2;
		window.location='http://www.nycharities.org/index.asp';		
	}
	function clockStop() {
		clearTimeout(t);
		clearTimeout(t2);
		doLoad();
	}




