 <!-- Codigo Java script para las galerias -->

function openGallery(theURL,winName) { //v2.0
	var a_int_windowWidth = 640;
	var a_int_windowHeight = 480;
	var int_windowLeft = (screen.width - a_int_windowWidth) / 2;
	var int_windowTop = (screen.height - a_int_windowHeight) / 2;
	window.open(theURL,winName,'width='+a_int_windowWidth+',height=' + a_int_windowHeight + ',left=' + int_windowLeft + ',top=' + int_windowTop + ',menubar=no,status=no');
}


function hide_div(div) {

	document.poppedLayer = eval('document.getElementById("'+div+'")');
	document.poppedLayer.style.display = "none";
}

function show_div(div) {

	document.poppedLayer = eval('document.getElementById("'+div+'")');
	document.poppedLayer.style.display = "inline";
}