function db(obj)
{
	document.getElementById(obj).style.display='block';	
}
function dn(obj)
{
	document.getElementById(obj).style.display='none';	
}
function dg(obj)
{
	return (document.getElementById(obj));
}

function dbb(id) 
{
		document.getElementById(id).style.display='';	
}


function dbi(id,texto)
{
	dbb(id);
	dg(id).innerHTML=texto;	
}

function favoritos(titulo,url) 
{
		
		if ( navigator.appName != 'Microsoft Internet Explorer' )
		{ window.sidebar.addPanel(titulo,url,""); }
		else { window.external.AddFavorite(url,titulo); } 
}
