function KeepFrontAlive(){
	var ajaxVar = new ajaxVars();
	ajaxVar.vars['action'] = "runFunction";
	ajaxVar.vars['func'] = "KeepFrontAlive";
	ajaxVar.gotoFunction = 'KeptAlive';	  		
	ajaxVar.AjaxPostSQL();			
}
function KeptAlive(){
	setTimeout("KeepFrontAlive();",200000);	
}
