	
	// Galeria d'art Estrany de la mota //
	// ajax.jp ---------------- muriLLo //
	
	// Objeto Ajax //
	function objetoAjax(){
		var xmlhttp = false;
		
		try{
			xmlhttp = new ActiveXObject("Msxm12.XMLHTTP");
		} catch (e)	{
			try{
				xmlhttp = new ActiveObject("Microsoft.XMLHTTP");} 
			catch (E){
				xmlhttp = false;}
		}
		
		if (!xmlhttp && typeof XMLHttpRequest != 'undefined')
			xmlhttp = new XMLHttpRequest();
		
		return xmlhttp;
	}
	
	// Muestra imagen clicada Exposicion //
	function bigImg(id_foto, id_expo){
		ajax = objetoAjax();
		divImg = document.getElementById('bigImg');
		
		var ide_ = 'bigImgExpo';
		
		ajax.open("post", "ajax.php", true);
		ajax.onreadystatechange = function(){
			if (ajax.readyState == 4){
				divImg.innerHTML = ajax.responseText}}
		
		ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		ajax.send("id_foto_="+id_foto+"&id_expo_="+id_expo+"&ide="+ide_)
	}
	
	// Muestra imagen clicada Artista //
	function bigImgArt(id_foto, id_art){
		ajax = objetoAjax();
		divImg = document.getElementById('bigImg');
		
		var ide_ = 'bigImgArtista';
		
		ajax.open("post", "ajax.php", true);
		ajax.onreadystatechange = function(){
			if (ajax.readyState == 4){
				divImg.innerHTML = ajax.responseText}}
		
		ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
		ajax.send("id_foto_="+id_foto+"&id_art_="+id_art+"&ide="+ide_)
	}
