function moreHot(div, start, type)
{
	var xmlHttp;
	
	document.getElementById(div).innerHTML="<img src='img/ajax.gif' alt='Loading' height='13' width='13' />";
	
	try
	{
		xmlHttp=new XMLHttpRequest();
	}
	catch (e)
	{
		try
		{
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e)
		{
			try
			{
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
			catch (e)
			{
				alert("Error: Your browser is not supported.");
				return false;
			}
		}
	}
	
	xmlHttp.onreadystatechange=function()
	{
		if(xmlHttp.readyState==4)
		{
			document.getElementById(div).innerHTML=xmlHttp.responseText;
		}
	}
	
	xmlHttp.open("GET","morehot.php?start="+start+"&type="+type,true);
	xmlHttp.send(null);
}
