function getURLParam(strParamName){
  	var strReturn = "";
	var strHref = window.location.href;
	if ( strHref.indexOf("?") > -1 ){
	var strQueryString = strHref.substr(strHref.indexOf("?")).toLowerCase();
	var aQueryString = strQueryString.split("&");
	for ( var iParam = 0; iParam < aQueryString.length; iParam++ ){
		 if (aQueryString[iParam].indexOf(strParamName.toLowerCase() + "=") > -1 ){
			  var aParam = aQueryString[iParam].split("=");
			  strReturn = aParam[1];
				    break;
      	 			}
    				    }
  				}
				return unescape(strReturn);
				}
function cambia_idioma(valor)
{
	id= getURLParam("id");				
	L= getURLParam("L");
	window.location="/index.php?id="+id+"&L="+valor;				
}

						/*<![CDATA[*/
							var resizeSpeed = 7;	// controls the speed of the image resizing (1=slowest and 10=fastest)	
							var fileLoadingImage = "typo3conf/ext/kj_imagelightbox2/lightbox/images/loading.gif";		
							var fileBottomNavCloseImage = "fileadmin/gui/general/closelabel.gif";
							var numberDisplayLabelFirst = "Image";
							var numberDisplayLabelLast = "of";
						/*]]>*/
						
						
OCULTO="none";
VISIBLE="block";
	
function mostrar(bloque) {
  document.getElementById('bloque').style.display=VISIBLE;
  document.getElementById('galeria').style.display=VISIBLE;
  document.getElementById('ver_off').style.display=VISIBLE;
  document.getElementById('ver_on').style.display=OCULTO;
}
 
function ocultar(bloque, galeria) {
  document.getElementById('bloque').style.display=OCULTO;
  document.getElementById('galeria').style.display=OCULTO;
  document.getElementById('ver_off').style.display=OCULTO;
  document.getElementById('ver_on').style.display=VISIBLE;
}

