function mostrardiv() {
div = document.getElementById('flotante');
div.style.display='';
}
function cerrar() {
div = document.getElementById('flotante');
div.style.display='none';
}
function mostrardiv2() {
div = document.getElementById('flotante2');
div.style.display='';
}
function cerrar2() {
div = document.getElementById('flotante2');
div.style.display='none';
}
function solo_num(cadena, obj, e){
opc = false;
tecla = (document.all) ? e.keyCode : e.which;
if (cadena == "%d")
if (tecla > 47 && tecla < 58)
opc = true;
if (cadena == "%f"){
if (tecla > 47 && tecla < 58)
opc = true;
if (obj.value.search("[.*]") == -1 && obj.value.length != 0)
if (tecla == 46)
opc = true;
}
return opc;
}
function numeros(obj, e){
	opc = false;
	tecla = (document.all) ? event.keyCode : e.which;
	if (tecla == 0) {opc = true;} // permitir las teclas de funciones F1, F2, Insert, etc.
	if (tecla == 8) {opc = true;} // tecla backspace
	if (tecla == 13) {evento_enter()} // tecla enter (ver nota)
	if (tecla >= 48 && tecla <= 57) {opc = true;} // sólo numeros
	return opc;
}

function evento_enter() {
return false;
}