// JavaScript Document
function mostrarMenu(menu)
{
	
	objeto=document.getElementById(menu);
	if (objeto.style.display!='')
	{
		objeto.style.display='';
	}
	else
	{
		objeto.style.display="none";
	}
}
function encima(src)
{

	if (!src.contains(event.fromElement)) {
	src.style.cursor = 'hand';
	src.bgColor = '#5e0000';}
}
function fuera(src,color)
{
	if (!src.contains(event.toElement)) {
	src.style.cursor = 'default';
	src.bgColor = color;}
}
function cargar(destino)
{
	window.parent.document.getElementById("mainFrame").src=''+destino;
	//alert(destino);
}
function cargar_leftframe(destino)
{
	parent.document.getElementById("leftframe").src=''+destino;
}
function cargar_topframe(destino)
{
	parent.document.getElementById("topframe").src=''+destino;

}
function cerrarTodosMenus()
{
	cerrarMenu("menuHistoria");
	cerrarMenu("menuCalidad");
	cerrarMenu("menuProductos");
	//cerrarMenu('menuAcabados');
	//cerrarMenu('menuPrecios');
	//cerrarMenu('menuAcero');
	
}
function cerrarMenu(menu)
{
	document.getElementById(menu).style.display="none";
}

function cambiar_color_over(celda,color){ 
   celda.style.backgroundColor=color
} 
function cambiar_color_out(celda,color){ 
   celda.style.backgroundColor=color;
} 

function addbookmark(){

if (document.all)
{window.external.AddFavorite(top.location.href,"Compañía de Tranvías de la Coruña, S.A.");}
else
		{

			alert("Pulse Ctrl+D para incluir en marcadores --- Prema Ctrl+D para incluir en favoritos --- Press Ctrl+D to add to bookmarks");
		}
}