
function getHotStuffs(theID){
	var container = $("_HOT_STUFFS_"+theID);
	var url="include/asp/getHotStuffs.asp";
	var pars="hsid="+theID;
	var myAjax=new Ajax.Updater(
			container,
			url, 
			{
				method: "post", 
				parameters: pars,
				onFailure: rptErr,
				evalScripts: true
			});
}


function rptErr(theReq){
	//alert("Error occured !");
	document.write(theReq.responseText);
}

for (i=0;i<3 ;i++){
	getHotStuffs(i);
}

