/* ************************************************************************ 
 *   Copyright 2009. Bio-MT
 *   Autor: ectorices
 ************************************************************************ */
 
function setVisible(id,value){
	if(document.getElementById(id) != null){
		document.getElementById(id).style.display = value;
	}
}

function getNavegador()
{
	if (navigator.appName.indexOf("Netscape") > -1) {return "Netscape";}
	if (navigator.appName.indexOf("Explorer") > -1) {return "Explorer";}
	return "Unknown";
}



