// 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 MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}