/***********************************************************************/
/***	MOSTRAMOS LA ANIMACION					 					 ***/
/***********************************************************************/
function showAnimation()
{
	// mostramos la foto
	elto = document.getElementById("pantalla");
	elto.style.visibility = "visible";
	elto.style.display = "block";		

	// mostramos la foto
	elto = document.getElementById("monitorfotografico");
	elto.style.visibility = "hidden";
	elto.style.display = "none";		
}

/***********************************************************************/
/***	FUNCION PARA CAMBIAR EL FORMATO DEL TEXTO DEL SERVICIO		 ***/
/***********************************************************************/
function servicioDestacado( elto )
{
	// mostramos el que toca
	elto = document.getElementById( elto );
	if ( elto != null )
	{
		elto.style.color = "red";	
	}	
}
function servicioNormal( elto )
{
	// mostramos el que toca
	elto = document.getElementById( elto );
	if ( elto != null )
	{
		elto.style.color = "black";	
	}
}

/***********************************************************************/
/***	FUNCION PARA AGREGAR A FAVORITOS		 					 ***/
/***********************************************************************/
function agregar( url,titulo )
{
   if ((navigator.appName=="Microsoft Internet Explorer") 
   		&& (parseInt(navigator.appVersion)>=4)) 
   	{
      window.external.AddFavorite(url,titulo);
   }
   else 
   { 
         alert("Presione Crtl+D para agregar este sitio en sus Marcadores"); 
   }
} 
