function get(id){return document.getElementById(id);}
function f_submit() {
	if (get('formu').url.value == '') {
		alert ('Por favor, seleccione el tipo de consulta que desea realizar. Gracias.')
		get('formu').url.focus();
		return false;
	}
	//document.location.href = '../' + get('formu').opciones.value + '.html';
	document.location.href = get('formu').url.value;
	return false;
}

function btn(boton, estado) {
	if (estado) get(boton).src = '../images/' + boton + '_over.gif';
	else get(boton).src = '../images/' + boton + '.gif';
}


