var xmlhttp

function loadbackpack_image(id, hotel)
{
	xmlhttp=GetXmlHttpObject();
	if (xmlhttp==null)
	{
		alert ("Your browser does not support AJAX!");
		return;
	}
	var url="/ajax/loadbackpack_image.php";
	url=url+"?id="+id+"&hotel="+hotel;
	url=url+"&sid="+Math.random();
	xmlhttp.onreadystatechange=showhotelimg;
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
}

function showhotelimg()
{
	if (xmlhttp.readyState==4)
	{
		document.getElementById("hotel_img").innerHTML=xmlhttp.responseText;
	}
}
