var xmlhttp = false;

function LoadGallery(gallery) {
	var galleryid = gallery;

	if (window.XMLHttpRequest) {
		xmlhttp=new XMLHttpRequest();
	}
	else if (window.ActiveXObject) {
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	else {
		alert("Your browser does not support XMLHTTP!");
	}
		
	xmlhttp.onreadystatechange=function() {
		if(xmlhttp.readyState==4) {
			document.getElementById("slideshow").innerHTML=xmlhttp.responseText;
		}
	}
	xmlhttp.open("GET","AJAXPages/loadGallery.php?galleryid="+galleryid,true);
	xmlhttp.send(null);
}