function recallWindow() {
	var recall = document.getElementById('recall').value;
	switch(recall) {
		case "auto":
			//Auto
			window.location ="/getaquote/auto/recall";
			break
			
		case "motorcycle":
			//Motorcycle
			window.location ="/getaquote/motorcycle/recall";
			break
			
		case "atv":
			//Condo/Co-op
			window.location ="/getaquote/atv/recall";
			break	
			
		case "home":
			//Homeowners
			window.location ="/getaquote/homeowners/recall";
			break
			
		case "renters":
			//Renters
			window.location ="/getaquote/renters/recall";
			break
			
		case "condo":
			//Condo/Co-op
			window.location ="/getaquote/condo/recall";
			break
			
		case "boat":
			//Boat
			window.location ="/getaquote/boat/recall";
			break
			
		case "commercial":
			//Commercial
			window.location ="/getaquote/commercial/recall";
			break
	}
		
	//window.location ="/getaquote/recall/";
}
