var rep="";

function abre_disco(iddisco){

	fadeOut('FOTO_CARATULA');
	document.getElementById('popnoticia').style.visibility="hidden";			

	ref=getRef();
	FAjax('../php/get_disco.php?ref='+ref+'&id='+iddisco,'DISCOGRAFIA_S2','','get');		
}

function galeria_fotos(){
	ref=getRef();
	FAjax('get_galeria_fotos.php?ref='+ref,'GALERIA_CUERPO','','get');		
}
function galeria_prensa(){
	ref=getRef();
	FAjax('get_galeria_prensa.php?ref='+ref,'GALERIA_CUERPO','','get');		
}
function galeria_videos(){
	ref=getRef();
	FAjax('get_galeria_videos.php?ref='+ref,'GALERIA_CUERPO','','get');		
}
function reproducir(mp3_file,titulo) {

titulo=" ";
mp3_file+=".mp3";

		if(rep==mp3_file){
			rep="";	
			//document.all.ECUALIZADOR.innerHTML='<EMBED SRC="'+rep+'" HIDDEN=false HEIGHT=16 WIDTH=100 AUTOSTART=true LOOP=false WMODE=transparent BGCOLOR=#000000>';
			document.getElementById('ECUALIZADOR').innerHTML='';
		}else{			
			rep=mp3_file;		
			document.getElementById('ECUALIZADOR').innerHTML='<EMBED SRC="'+mp3_file+'" HIDDEN=false HEIGHT=16 WIDTH=100 AUTOSTART=true LOOP=false WMODE=transparent BGCOLOR=#000000>';
			//document.all.ECUALIZADOR.innerHTML='<div class=ECUA_TXT>'+titulo+'</div><div class=ECUA_GIF><img src=img/ecua.gif width=30px height:15px></div>';
		}
}

function show_popup(id,idnoticia,titulo) {
			ref=getRef();
			document.getElementById('popsuptxt').innerHTML=titulo;
			document.getElementById(id).style.visibility="visible";			
			FAjax('php/get_noticia.php?id='+idnoticia,'popcuerpo','','get');					
}

function show_letra(id,idcancion,titulo,previo) {	

ref=getRef();
//x=(screen.width/2)-(600/2); 
//y=(screen.height/2)-((500+130)/2); 

//x=(screen.width/2)-(400/2)+"px"; 
//y=(screen.height/2)-((100+133)/2)+"px"; 
x="635px";
y="560px";

document.getElementById(id).style.visibility="visible";
document.getElementById(id).style.top=y;
document.getElementById(id).style.left=x;
url='get_letra.php?ref='+ref+'&id='+idcancion+'&previo='+previo;
FAjax(url,id,'','get');					


}


function show_image(id,idfoto,titulo) {
			document.getElementById('popsuptxt').innerHTML=titulo;
			document.getElementById(id).style.width=700+".px";			
			document.getElementById(id).style.height=600+".px";			
			document.getElementById(id).style.visibility="visible";			
			FAjax('php/get_foto.php?id='+idfoto,'popcuerpo','','get');					
}

function EnviarFormulario(){

	var nombre=document.getElementById('form_nombre').value;
	var email=document.getElementById('form_email').value;
	var asunto=document.getElementById('form_asunto').value;	
	var error=0;
	
	if ((nombre=='')||(nombre==' '))  { error=1; }
	if ((email=='')||(email==' '))    { error=1; }
	if ((asunto=='')||(asunto==' '))  { error=1; } 

	if(error==1){
		alert("Tolos los campos son necesarios");
	}else{
		FAjax('../php/Enviar_Formulario.php?pnombre='+nombre+'&pemail='+email+'&pasunto='+asunto,'CONTACTO-BOTONES','','get');	
		alert("Formulario enviado");
		window.location="/";		
	}

}

function getRef(){

var dat=new Date();

dia=dat.getDay();
mes=dat.getMonth();
anno=dat.getFullYear();
min=dat.getMinutes();
sec=dat.getSeconds();
ref="ref"+dia+mes+anno+min+sec;
return ref

}

function goHome(){
		window.location="/";		
}

function enviarcomentario(){
	var nombre=document.getElementById('nombrecomentario').value;
	//var texto=document.getElementById('textocomentario').text;
	var texto = tinyMCE.get('textocomentario').getContent(); 
	texto=texto.replace(' ','');
	texto=escape(texto);
	var error=0;		

	if ((nombre=='')||(nombre==' '))  { error=1; }
	if ((texto=='')||(texto==' '))    { error=1; }

	if(error==1){
		alert("Tolos los campos son necesarios");
	}else{
		document.getElementById('nombrecomentario').value='';
		document.getElementById('textocomentario').value='';
		FAjax('php/Enviar_Comentario.php?pnombre='+nombre+'&ptexto='+texto,'COMENTARIO_FORM','','get');	
	}
}

function cargar_comentarios(){
		FAjax('php/get_formulariocomentarios.php','COMENTARIO_FORM','','get');	
}

function cambiaimagen(img){
	initFade('ENCABEZADO');		
	fadeOut('ENCABEZADO');	
	document.getElementById('ENCABEZADO').style.background='url('+img+')';
	fadeIn2('ENCABEZADO');
}

function Abrir_Documento(doc,id){

x=(screen.width/2)-(600/2); 
y=(screen.height/2)-((500+130)/2); 

if(doc=='LEGAL'){
	window.open ("/docs/doc_avisolegal.htm","Aspectos_Legales","menubar=1,resizable=1,width=600,height=500,scrollbars=YES,status=NO,toolbar=NO,location=NO,menubar=NO,directories=NO,left="+x+",top="+y);
}
if(doc=='PRIVACIDAD'){
	window.open ("/docs/doc_privacidad.htm","Politica_de_Privacidad","menubar=1,resizable=1,width=600,height=500,scrollbars=YES,status=NO,toolbar=NO,location=NO,menubar=NO,directories=NO,left="+x+",top="+y);
}

}





