var oalbum=false;
function startAjax(){
	var xmlhttp = false;
	try {
		xmlhttp = new XMLHttpRequest();
	} catch (trymicrosoft) {
		try {
			xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (othermicrosoft) {
			try {
				xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (failed) {
				xmlhttp = false;
			}
		}
	}
	return xmlhttp;
}

	function ajx_foto(foto){
		var xmlhttp = startAjax();
		xmlhttp.onreadystatechange = function() {
			if (xmlhttp.readyState==4){
				var arr = xmlhttp.responseText;
				document.getElementById('album').innerHTML=arr;
			}
		}
		xmlhttp.open("GET", "/album.php?fotoid="+foto, true);
		xmlhttp.send(null);
	}
	
	function open_album(){
		if(oalbum==false){
			document.getElementById('album').innerHTML='';
			document.getElementById('black').style.display='block';
			document.getElementById('back').style.display='block';
			document.getElementById('ahold').style.display='block';
			document.getElementById('album').style.display='block';
		}
		oalbum=true;
	}
	
	function close_album(){
	
		if(oalbum==true){
			document.getElementById('album').innerHTML='';
			document.getElementById('black').style.display='none';
			document.getElementById('back').style.display='none';
			document.getElementById('album').style.display='none';
			document.getElementById('ahold').style.display='none';
		}
		oalbum=false;
	}	
