// JavaScript Document
function enviarBusqueda(form) {
	// Recogemos las variables
	var marca = document.getElementById('marca').value;
	var cilindrada = document.getElementById('cilindrada').value;
	var precio = document.getElementById('precio').value;
	var aTipo = form.tipo;
	
	aStrTipos = "";
	for (i = 0; i < aTipo.length; i++) {
		if ( aTipo[i].checked ) {
			aStrTipos += aTipo[i].value + "-";
		}
	}
	
	if (aStrTipos.lastIndexOf("-") == aStrTipos.length - 1) aStrTipos = aStrTipos.substring(0, aStrTipos.length - 1);
	
	strURL = marca + "+" + cilindrada + "+" + precio + "+" + aStrTipos + "_";
	
	strURL = "/motos/busqueda/" + strURL + "/";
	top.location.href = strURL;
}