function loadPage(width, page)
{
	var div = document.getElementById("gallery");
	var xmlhttp = getXmlHttp();
	var url = "./galleryBody.php?width=" + width + "&page=" + page;
	
	xmlhttp.onreadystatechange = function()
	{
		if(xmlhttp.readyState == 4)
		{
			div.innerHTML = xmlhttp.responseText;
		}
	}
	
	xmlhttp.open("POST", url, true);
	xmlhttp.send(null);
}

function loadZoomPage(table)
{
	var div = document.getElementById("galleryZoom");
	var xmlhttp = getXmlHttp();
	var url = "./galleryTable.php?table=" + table;	
	
	div.style.display = "block";
	div.innerHTML = "<img src=\"./images/loading.gif\" />"
	
	xmlhttp.onreadystatechange = function()
	{
		if(xmlhttp.readyState == 4)
		{
			div.innerHTML = '<a name="realign"></a>' + xmlhttp.responseText;
			document.location = "#realign";
		}
	}
	
	xmlhttp.open("POST", url, true);
	xmlhttp.send(null);
}

function sackZoomPage()
{
	document.getElementById("galleryZoom").style.display = "none";
}

function loadAsBigImg(img)
{
	document.getElementById("bigImg").src = img;
}

