function showLink() {
    if (document.getElementById) {
    	        if(document.getElementById("LnkSen"))
    	        {
		  linkSen = document.getElementById("LnkSen");
		  linkSen.className = "visibleSel";
	          linkSen.classString = "visibleSel";
		} 
		if(document.getElementById("LnkDep"))
		{ 
		  linkDep = document.getElementById("LnkDep");
		  linkDep.className = "visibleSel";
	          linkDep.classString = "visibleSel";
		}
		if(document.getElementById("LnkGov"))
		{
		  linkGov = document.getElementById("LnkGov");
		  linkGov.className = "visibleSel";
	          linkGov.classString = "visibleSel";
		}
		if(document.getElementById("LnkPol"))
		{  
		  linkPol = document.getElementById("LnkPol");
		  linkPol.className = "visibleSel";
	          linkPol.classString = "visibleSel";
		}  
	} else if (document.all) { 
		if(document.all["LnkSen"])
		{
		  linkSen = document.all["LnkSen"];
		  linkSen.className = "visibleSel";
	          linkSen.classString = "visibleSel";
		}
		if(document.all["LnkDep"])
		{
		  linkDep = document.all["LnkDep"];
		  linkDep.className = "visibleSel";
	          linkDep.classString = "visibleSel";
		}
		if(document.all["LnkGov"])
		{
		  linkGov = document.all["LnkGov"];
		  linkGov.className = "visibleSel";
	          linkGov.classString = "visibleSel";
		}
		if(document.all["LnkPol"])
		{
		  linkPol = document.all["LnkPol"];
		  linkPol.className = "visibleSel";
	          linkPol.classString = "visibleSel";
		}
	} 
}

function showSel(idSel) {
	elId = idSel;
	lnkId = idSel + "_Lnk";
	tipoSel = elId.substring(0, 6);
    if (document.getElementsByTagName) {
		divColl = document.getElementsByTagName("div");
		lnkColl = document.getElementsByTagName("a");
	} else if (document.all) { 
		divColl = document.all.tags("div");
		lnkColl = document.all.tags("a");
	} 
	if (divColl != null) {	
		for (i=0; i<divColl.length; i++) {
			if (divColl[i].id.indexOf(tipoSel) != -1)  {
				divColl[i].className = "hiddenSel";
				divColl[i].classString = "hiddenSel";
			}
		}
	}
	if (lnkColl != null) {	
		for (i=0; i<lnkColl.length; i++) {
			if (lnkColl[i].id.indexOf(tipoSel) != -1)  {
				lnkColl[i].className = "link4Liv";
				lnkColl[i].classString = "link4Liv";
			}
		}
	}
	
	if (document.getElementById) {
		if (document.getElementById(elId))
		{
		  lista = document.getElementById(elId);
		  lnk = document.getElementById(lnkId);
                  lista.className = "activeSel"; 
	          lnk.className = "linkOn";
	          lista.classString = "activeSel";
	          lnk.classString = "linkOn";
	        }

} else if (document.all) {
	        if (document.all[elId])
	        {
		  lista = document.all[elId];
		  lnk = document.all[lnkId];
		  lista.className = "activeSel"; 
        	  lnk.className = "linkOn";
	          lista.classString = "activeSel";
	          lnk.classString = "linkOn";
	        }  
	}
	
}

function checkOnLoad()
{
  
}