function Foto(gal,id) {
	h_foto = ajax();
	h_foto.open("GET","js/foto.asp?g="+gal+"&id="+id,true);
	h_foto.onreadystatechange=function() {
		if (h_foto.readyState==1) {
			document.getElementById("foto").innerHTML=flash;
		}
		if (h_foto.readyState==4) {
			document.getElementById("foto").innerHTML=h_foto.responseText;
		}
	}	
	h_foto.send(null);
}

function Menu(gal,pag) {
	h_menu = ajax();
	h_menu.open("GET","js/menuFoto.asp?g="+gal+"&p="+pag,true);
	h_menu.onreadystatechange=function() {
		if (h_menu.readyState==4) {
			document.getElementById("menu").innerHTML=h_menu.responseText;
		}
	}	
	h_menu.send(null);
}