
function popup()
{
	// la funcion getQueryVAriable esta definida en el codigo interno de mainpaneldefault
	if ((getQueryVariable("tabindex") == 'X') || (getQueryVariable("tabindex") == '0')) 
	{
		//window.open('http://www.darwin.com.co/Portal/Navidad2005Pop.htm','Navidad','width=390,height=450,buttons=no,scrollbars=no,location=no,menubar=no,resizable=yes,status=yes,directories=no,toolbar=no');	
	}
}

function ShowKeyBoard_old(objeto)
{
	if (objeto.style.display == "block")
	{
		objeto.style.display="none"; 
	}
	else
	{
		objeto.style.display="block"; 
	}
}


function ShowKeyBoard(nombreCapa,boton)
{ 
	//document.getElementById(nombreCapa).style.visibility="visible"; 
	if (document.getElementById(nombreCapa).style.display == "block")
	{
		document.getElementById(nombreCapa).style.display="none"; 
		boton.src='images/KeyBoardGreen.gif';
		boton.alt='Mostrar Teclado';
	}
	else
	{
		document.getElementById(nombreCapa).style.display="block"; 
		boton.src='images/KeyBoardRed.gif';
		boton.alt='Ocultar Teclado';
	}
} 

function cambiar(nombreCapa)
{ 
	//document.getElementById(nombreCapa).style.visibility="visible"; 
	if (document.getElementById(nombreCapa).style.display == "block")
	{
		document.getElementById(nombreCapa).style.display="none"; 
	}
	else
	{
		document.getElementById(nombreCapa).style.display="block"; 
	}
} 

function mostrar(nombreCapa){ 
//document.getElementById(nombreCapa).style.visibility="hidden"; 
	document.getElementById(nombreCapa).style.display="block"; 
} 

function ocultar(nombreCapa){ 
//document.getElementById(nombreCapa).style.visibility="hidden"; 
	document.getElementById(nombreCapa).style.display="none"; 
} 

