function exibeDiv(id) {
		document.getElementById(id).style.display = 'block'
}
function ocultaDiv(id) {
		document.getElementById(id).style.display = 'none'
}

function alternaDiv(id) {
	div = document.getElementById(id)
	if (div.style.display == 'block')
		ocultaDiv(id)
	else
		exibeDiv(id)
}


function trocaDiv(id) {
	{
		layers = new Array('ensaios');
		for(i=0;i<layers.length;i++)
		{
			document.getElementById( layers[i] ).style.display = 'none';
			// setTimeout ('ShowOutrosSegHome("info")',6000);
		}
		document.getElementById( id ).style.display = 'block';
	}
	
}

function favoritos() {
title = "Rita Guedes - Site oficial";
url = "http://www.hospedevip.com.br";
if (window.sidebar) { // Mozilla Firefox Bookmark
window.sidebar.addPanel(title, url,"");
} else if( window.external ) { // IE Favorite
window.external.AddFavorite( url, title);
} else if(window.opera && window.print) { // Opera Hotlist
return true;
}
}


