//JavaScript Document

//Selecciona y Despliega LI Ocultos
//Create an array
var allPageTags = new Array(); 
function selectOthers(theClass) { 
//Populate the array with all the page tags
var allPageTags=document.getElementsByTagName("*");
//Cycle through the tags using a for loop
for (i=0; i<allPageTags.length; i++) {
//Pick out the tags with our class name
if (allPageTags[i].className==theClass) {
//Manipulate this in whatever way you want
allPageTags[i].style.display='block';  }  } } 

//Oculta Boton Otros y Reubica Checkbox
function showOthers() {
	document.getElementById('Portada1_rptPaises__ctl2_Boton').style.display='none';
	document.getElementById('Portada1_DvCheck').setAttribute('style','float:right');
	document.getElementById('check').style.float='right';
	document.getElementById('check').style.width='655px';
	document.getElementById('check').style.textAlign='right';
	document.getElementById('countrypanel').style.backgroundImage='url(../../estilos/final/images/Portada/bgCountryGroupBig.png)';
}
