
function cargaContenido (pag){
	var iFrame = document.getElementById('ifrein');
	// Si no estamos en index.html
	if (iFrame == null){
		window.parent.window.location=pag;
	}
	else{
		iFrame.src = pag;
	}

}

function cargaLetra (letra, comentario, titulo){
	var iFrame = document.getElementById('ifreinletras');
	iFrame.src = letra;
	iFrame = document.getElementById('ifreincomentarios');
	if (comentario == ''){
		comentario = "comentarios/noComentario.html"
	}
	iFrame.src = comentario;
	var iTitulo = document.getElementById('titulocancion');
	iTitulo.innerHTML = titulo ;
}

function cargaFoto (foto, autor, fecha, gracias){
	var iFrameFoto = window.parent.frames.ifreinFoto;
	var iDivFoto = iFrameFoto.document.getElementById('foto');
	iDivFoto.innerHTML = "<img src='../../imagenes/" + foto + "'>";
	var datosFoto= window.parent.document.getElementById('datosFoto');
	var sAutor = "Desonocido";
	var sFecha = "--/--/----";
	if (autor) sAutor = "" + autor + "";
	if (sAutor == "") sAutor = "Desonocido";
	if (fecha) sFecha = "" + fecha+ "";
	if (sFecha == "") sFecha = "--/--/----";
	var sGracias = "";
	if (gracias){
		if (gracias == "1"){
			sGracias = "&nbsp;&nbsp;&nbsp;&nbsp;Gracias a <a href='http://www.elefant.com' target='_new'>Elefant</a>"
		}
		else{
			sGracias = "&nbsp;&nbsp;&nbsp;&nbsp;" + gracias + "";
		}
				
	}
	datosFoto.innerHTML = "Autor: <b>" + sAutor + "</b>&nbsp;&nbsp;&nbsp;&nbsp;Fecha: <b>" + sFecha+ "</b>" + sGracias;

}

function cargaDisco(valor){
	valor = "" + valor + "";
	var iFrameContenido = window.parent.frames.ifrein;
	if (valor == "rabia"){
		window.location="rabia.html";
	}
	else if (valor == "retrovisor"){
		window.location="retrovisor.html";
	}
	else if (valor == "oxidado"){
		window.location="oxidado.html";
	}
	else if (valor == "747"){
		window.location="747.html";
	}
	else if (valor == "cierra"){
		window.location="cierra.html";
	}
	else if (valor == "vertigo"){
		window.location="vertigo.html";
	}
	else if (valor == "fonorama"){
		window.location="fonorama.html";
	}
}

function windowOpen (surlbo, nw, nh, likewindow)
{
  if (document.all)
 	   var xMax = screen.width, yMax = screen.height;
 	else if (document.layers)
 	   var xMax = window.outerWidth, yMax = window.outerHeight;
 	else
 	   var xMax = 640, yMax=480;

 	var xOffset = (xMax - nw)/2, yOffset = (yMax - nh)/2;
  if (likewindow){
    // Like normal window
    window.open (surlbo, "KYNpopShowFile", "width=" + nw + ",height=" + nh + ",left=" + xOffset + ",top="+yOffset+",toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,modal=yes");
	  }else{ // Normal PopUP
		  window.open (surlbo, "KYNpopShowFile", "width=" + nw + ",height=" + nh + ",left=" + xOffset + ",top="+yOffset+",toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,modal=yes");
  	}	
}