// JavaScript Document
    function navegaInicio(idioma)
	{
	  document.frm.action=idioma + "/principal.html"
	  frm.submit();
	}	
	function cargaImagen()
    { 
      var x = window.location.search.split("=");
	  var y = x[1].split("&");  // foto
	  var z = x[2].split("&");  // alt

      document.forms(0).fotillo.src="../../images/" + y[0];
	  document.forms(0).fotillo.height=z[0];
	  document.forms(0).fotillo.width=x[3];
    }
 
  function maxFoto(foto, alt, anc)
  {  
    var newAlt = alt * 3;
	var newAnc = anc * 3;
    window.open("foto.html?foto=" + foto + "&alt=" + newAlt + "&anc=" + newAnc, "",
				"status=no, height=" + (newAlt+40) + "px, width=" + newAnc + "px, top=100px, left=100px");
  }	

  function reloadLeft()
  { 
    parent.leftFrame.reload();
  }