// JavaScript Document
function mostrardiv() {
	div = document.getElementById('legal');
	div.style.display = '';
	div.scrollIntoView(true);

}
function cerrardiv() {
	div = document.getElementById('legal');
	div.style.display = 'none';
}

function mostrar_div(div_id) {
	div = document.getElementById(div_id);
	if (div.style.display != ''){
		div = document.getElementById(div_id);
		div.style.display = '';
	} else{
		div.style.display = 'none';
	}
}                   

//Codigo que muestra la cuenta atras hasta el final del aņo 2010
//La Web del Programador
//http://www.lawebdelprogramador.com
