var WH_ajax = new sack();
var HS_ajax = new sack();
//updateInstallLogIntervalId = setInterval ( " updateInstallLog()", 5000 );
function newWH(){

WH_ajax.requestFile = 'ajax.whatshot.php';	
		WH_ajax.onCompletion = printWH;	
		WH_ajax.runAJAX();		
}

function printWH(){
	var elem= document.getElementById('whatsHot');
	elem.innerHTML=WH_ajax.response;
}


function newHS(){
HS_ajax.requestFile = 'ajax.headerSplash.php';	
		HS_ajax.onCompletion = printHeaderSplash;	
		HS_ajax.runAJAX();		
}
function printHeaderSplash(){
	var elem= document.getElementById('headerSplash');
	elem.innerHTML=HS_ajax.response;
}
