// JavaScript Document
function showLightbox(photoNumber) {
    document.getElementById('over').style.display='block';
    document.getElementById('fade').style.display='block';
    var d = document.createElement("div");
    d.setAttribute("id", "locationMap");
    document.getElementById('over').appendChild(d);
    var params = {
	menu: "false",
	wmode: "opaque",
	align: "center"};
	
	var stringparam = "";
	var filenameparam = "?XMLFILENAME=" + document.getElementById('xmlfilename').value;
	
	if(photoNumber!="")
		stringparam = "&PHOTONUMBER="+photoNumber;
		
    swfobject.embedSWF("galley.swf"+filenameparam+stringparam, "locationMap", "663", "510", "8.0.0", "expressInstall.swf", flashvars, params);

}


function hideLightbox() {
    document.getElementById('over').innerHTML = '';
    document.getElementById('over').style.display='none';
    document.getElementById('fade').style.display='none';	
}

function showContacto(){
		document.getElementById('fade').style.display = 'block';
		var d = document.createElement("div");
		    d.setAttribute("id", "contentContacto");
		    document.getElementById('over').appendChild(d);
		//$("#fade").show("fast",function(){
    	//	var d = document.createElement("div");
		//  d.setAttribute("id", "content");
		//  document.getElementById('over').appendChild(d);});

	    $.ajax({
	        url: "contacto.php",
	        async:true,
	        beforeSend: function(objeto){
				loadingFunction();
	        	/*
	            alert("Adi&oacute;s, me voy a ejecutar");
	            */
	        },
	        complete: function(objeto, exito){
	            /*
	            alert("Me acabo de completar")
	            if(exito=="success"){
	                alert("Y con &eacute;xito");
	            }
	            */
	        },
	        contentType: "application/x-www-form-urlencoded;",
	        dataType: "html",

	        error: function(objeto, quepaso, otroobj){
	            //alert("Estas viendo esto por que fall&eacute;");
	            //alert("Pas&oacute; lo siguiente: "+quepaso);
	        },
	        global: true,
	        ifModified: false,
	        processData:true,
	        success: function(datos){
	        	$("#contentContacto").html(datos);
	        	$("#over").fadeIn("normal",function(){});
	        	$("#fade").html('');
	        	//alert($("#content").html());
//	            alert(datos);
	        },
	        timeout: 3000,
	        type: "GET"
		});

}

function loadingFunction(){
	var img = "<div style=\"width:31px;top:50%;left:50%;position:absolute;margin-left:-15px;margin-top:-15px\"><img src=\"imagenes/ajaxloader.gif\" border=\"0\" align=\"middle\" /></div>";
	$("#fade").html(img);
}

function cerrarLight3(){
	$("#contentContacto").html('');
	$("#over").fadeOut("fast", function(){
		$("#fade").fadeOut("fast", function(){});
	});
	
	var d = document.getElementById('contentContacto');
	document.getElementById('over').removeChild(d);	
}

function graciasContacto(){
	$("#mensajeContacto").html('');
	$("#formularioContacto").html('Muchas gracias, nos pondremos en contacto a la brevedad.');
	setTimeout(cerrarLight3, 3000);
}
