/* La Destilerķa V3 [pixelsiete.com] */


function closeWindowF(){
	
	/*$("#closeWindow").fadeOut("slow");
	$("#mapWindowT").fadeOut("slow");*/
	document.getElementById("closeWindow").style.display = "none";
	document.getElementById("mapWindowT").style.display = "none";

	
}


function viewMap(mapxt){
	
	$("#mapWindowT").fadeIn("slow");
	
	$.post("processes/viewMap.php", { mapx: mapxt}, 
				function(data){ 
				
					$('#mapWindowT').replaceWith('<div id="mapWindowT">'+data+'</div>');
					$("#closeWindow").fadeIn("slow");
					
				});
	

}
