var idTm = 0;
function ocultarFastLinks(){
	var divList = document.getElementsByTagName("div");
	for (var i = 0; i < divList.length; i++)  
		divList[i].style.visibility = "hidden";
}

function irFastLinks(url){
	var divList = document.getElementsByTagName("div");
	for (var i = 0; i < divList.length; i++)  
		divList[i].style.visibility = "hidden";
	document.location=url;
}

function mostrarFastLink(iddiv){
	var divList = document.getElementsByTagName("div");
	for (var i = 0; i < divList.length; i++){
		//alert(iddiv+" - "+divList[i].id);
		if (iddiv!=divList[i].id){
			if (iddiv.lastIndexOf("_1")>-1)
				divList[i].style.visibility = "hidden";
			if ((iddiv.lastIndexOf("_2")>-1)&&(divList[i].id.lastIndexOf("_2")>-1)&&(iddiv!=divList[i].id))
				divList[i].style.visibility = "hidden";
		}
		else
			divList[i].style.visibility = "visible";
	}
}

function setTimer(id){
		clearTimeout(id);
		id=setTimeout('ocultarFastLinks()',3000);
	return id;
}

function func_null(){
}
