function timeout(){
	document.getElementById('cargando').style.display='inline';
	setTimeout("ocultar('cargando')",5000); 

}

function ocultar(){
	document.getElementById('cargando').style.display='none'
}

