// Search Form Processing Script Begin --------------------------
function searchRedirect() {
	
	var searchTerm = document.searchForm.Search.value.toLowerCase();
	searchTerm = searchTerm.split(' ').join('');
    // Outdoor Furniture
	if(searchTerm == 'castclassics') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Cast_Classics.html';
		return false;
	}
	else if(searchTerm == 'castelle') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Castelle.html';
		return false;
	}
	else if(searchTerm == 'gloster') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Gloster.html';
		return false;
	}
	else if(searchTerm == 'hanamint') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Hanamint.html';
		return false;
	}
	else if(searchTerm == 'lloydflanders') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Lloyd_Flanders.html';
		return false;
	}
	else if(searchTerm == 'polywood' || searchTerm == 'poly-wood') {
		window.location = 'http://www.casualfurnitureworld.com/Poly-Wood.html';
		return false;
	}
	else if(searchTerm == 'seasidecasual') {
		window.location = 'http://www.casualfurnitureworld.com/SeasideCasual.html';
		return false;
	}
	else if(searchTerm == 'braxtonculler') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Braxton_Culler.html';
		return false;
	}
	else if(searchTerm == 'ebel') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Ebel.html';
		return false;
	}
	else if(searchTerm == 'kingsleybate') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Kingsley_Bate.html';
		return false;
	}
	else if(searchTerm == 'meadowcraft') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Meadowcraft.html';
		return false;
	}
	else if(searchTerm == 'newriver') {
		window.location = 'http://www.casualfurnitureworld.com/Design_New_River.html';
		return false;
	}
	else if(searchTerm == 'outdoorlifestyles') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Outdoor_Lifestyles.html';
		return false;
	}
	else if(searchTerm == 'tropitone') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Tropitone.html';
		return false;
	}
	else if(searchTerm == 'winston') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Winston.html';
		return false;
	}
	else if(searchTerm == 'woodard') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Woodard.html';
		return false;
	}
	else if(searchTerm == 'woodardlandgrave') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Woodard_Landgrave.html';
		return false;
	}
	// Grills
	else if(searchTerm == 'weber') {
		window.location = 'http://www.casualfurnitureworld.com/Weber.html';
		return false;
	}
	else if(searchTerm == 'tec') {
		window.location = 'http://www.casualfurnitureworld.com/TEC.html';
		return false;
	}
	else if(searchTerm == 'biggreenegg') {
		window.location = 'http://www.casualfurnitureworld.com/BigGreenEgg.html';
		return false;
	}
	else if(searchTerm == 'broilmaster') {
		window.location = 'http://www.casualfurnitureworld.com/Broilmaster.html';
		return false;
	}
	else if(searchTerm == 'primo') {
		window.location = 'http://www.casualfurnitureworld.com/Primo.html';
		return false;
	}
	else if(searchTerm == 'dimplex') {
		window.location = 'http://www.casualfurnitureworld.com/DimplexElectricGrills.html';
		return false;
	}
	// Hearth
	else if(searchTerm == 'monesson') {
		window.location = 'http://www.casualfurnitureworld.com/Monesson.html';
		return false;
	}
	else if(searchTerm == 'rhpeterson') {
		window.location = 'http://www.casualfurnitureworld.com/RHPeterson.html';
		return false;
	}
	else if(searchTerm == 'lennox') {
		window.location = 'http://www.casualfurnitureworld.com/Lennox.html';
		return false;
	}
	else if(searchTerm == 'hearthstone') {
		window.location = 'http://www.casualfurnitureworld.com/Hearthstone.html';
		return false;
	}
	else if(searchTerm == 'buckstoves') {
		window.location = 'http://www.casualfurnitureworld.com/BuckStoves.html';
		return false;
	}
	// Umbrellas
    else if(searchTerm == 'umbrellas' || searchTerm == 'umbrella') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Umbrellas.html';
		return false;
	}
	// Barstools
    else if(searchTerm == 'barstools' || searchTerm == 'barstool') {
		window.location = 'http://www.casualfurnitureworld.com/Design_BarStools.html';
		return false;
	}
    else if(searchTerm == 'trica' || searchTerm == 'tricabarstools' || searchTerm == 'tricabarstool') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Trica.html';
		return false;
	}
    else if(searchTerm == 'hillsdale' || searchTerm == 'hillsdalebarstools' || searchTerm == 'hillsdalebarstool') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Hillsdale.html';
		return false;
	}
    else if(searchTerm == 'pastel' || searchTerm == 'pastelbarstools' || searchTerm == 'pastelbarstool') {
		window.location = 'http://www.casualfurnitureworld.com/Design_Pastel.html';
		return false;
	}
	// Swings
    else if(searchTerm == 'swing' || searchTerm == 'swings') {
		window.location = 'http://www.casualfurnitureworld.com/Swings.html';
		return false;
	}
	else {
		return true;
	}
}
