window.seleccionado=null;
window.seleccionadomenu=null;
<!--b=color claro celda rollover c=color texto rollover
//-->
sobre=function(e,b,c){
	if(!b) var b='#E2E2E1';
	if(!c) var c='#254370';
	if (seleccionado!=e)
	{
		e.style.backgroundColor=b;
		e.style.color=c;
	}
}
<!--b=color oscuro celda sinrollover c=color texto sin rollover
//-->
fuera=function(e,b,c)
{
	if(!b) var b='transparent';
	if(!c) var c='#254370';
	if (seleccionado!=e)
	{
		e.style.backgroundColor=b;
		e.style.color=c;
	}
}
ir=function(e,newwin,o)
{
	if(!o) var o=window;
	if(!newwin) o.frames['self'].document.location.href = e;
	else window.open(e,newwin)
}
