// JavaScript Document
function filter_vehicles_user(by) {

if(by.value =="all"){

	this.location = "index.php?report=current";

	} else {
			document.example.submit1.disabled = true;
			this.location = "index.php?report=current&filter="+ by.value;
	}


	}
	
function filter_vehicles(by) {


		document.example.submit1.disabled = true;
		this.location = "index.php?report=current&vid="+ by.value;



	}
	
	
