/*************************************************/
/************ Telémaco Sistemas S.L **************/
/*************************************************/

/************* Abre una popup con el player flash *****/
function reproductor(){
	var ventana=window.open("http://www.streaming.telemaco.es/radioibi/","reproductor","status=no, location=no, scrollbars=no, resizable=no, width=380, height=79");
	ventana.opener.top.name="opener";
	ventana.focus(); 
}

function tipo_navegador()
{
	if (navigator.appName != "Microsoft Internet Explorer")
 	  document.write("<link rel='stylesheet' type='text/css' href='./personalizacion/estilos/remplazar.css' />");
}
tipo_navegador();

/*************** Funciones autor *******************/
function muestraAutor(id, autor, fecha)
{
  var div_id = "autor"+id;
  var fechaautor = "";

  if(autor)
    fechaautor = "Por: "+autor + " ";  
  if(fecha)
    fechaautor = fechaautor + fecha;
    
  document.getElementById(div_id).innerHTML = fechaautor;	
}
		
function ocultaAutor(id)
{
    var div_id = "autor"+id;
	document.getElementById(div_id).innerHTML = "";
}
/***********************************************************/


/*************** Funciones ajax *******************/
function paginacion_ajax(carga)
{
  llamarasincrono(carga, 'seccion');	
}

function pagfotogal_ajax(carga)
{
  llamarasincrono(carga, 'fotogaleria');	
}

function encuesta(idpregunta)
{
  for (i=0;i<document.encuesta.respuesta.length;i++)
  { 
    if (document.encuesta.respuesta[i].checked) 
      break; 
  }
  var respuesta = i+1;  
  llamarasincrono('personalizacion/includes_ajax/encuesta.asp?idpregunta='+idpregunta+'&respuesta='+respuesta, 'encuesta');  
}
/***********************************************************/