// JavaScript Document
function CambiarImagen (imagen) {
	imgGrande = document.getElementById("grande").src;
	longitud = imgGrande.length;
	imgGrande = imgGrande.slice(0,longitud-4)+"_peq.jpg";
	imgPeq = document.getElementById(imagen).src;
	longitud = imgPeq.length;
	imgPeq = imgPeq.slice(0,longitud-8)+".jpg";
	posicionTmp = imgPeq.indexOf("Tmp/");
	posicionSub = imgPeq.indexOf("_");
	numChars = posicionSub - posicionTmp-4;
	idImgPeq = imgPeq.substr(posicionTmp+4,numChars);
	document.getElementById("grande").src = imgPeq;
	document.getElementById(imagen).src = imgGrande;
	document.getElementById("descrip").value =  eval("descripcion"+idImgPeq);
}
function custom_print() {
        self.print();
}
function seleccion(url,lista) {
	var zona = document.getElementById(lista).value;
	var pagina = url ;
	window.location.href= url+"zonaGen="+zona;
}
