// JavaScript Document
function showEventoMotos() {
	id = $('f_eventos_motos').getValue();
	if(id > 0) {
		document.location.href='hacemos.php?tipo=motos&evento='+id;
	}
}

function showEventoCoches() {
	id = $('f_eventos_coches').getValue();
	if(id > 0) {
		document.location.href='hacemos.php?tipo=coches&evento='+id;
	}
}

function showEventoOtros() {
	id = $('f_eventos_otros').getValue();
	if(id > 0) {
		document.location.href='hacemos.php?tipo=otros&evento='+id;
	}
}
