function searchGame(){
	var searchInput = document.getElementById('search-field');
	if(searchInput.value == ''){
		searchInput.setAttribute("class", "text-field text-input-wrong");
		searchInput.setAttribute("className", "text-field text-input-wrong");
		alert('You must enter a string to search for.');
	}
	else if(searchInput.value.length <= 2){
		searchInput.setAttribute("class", "text-field text-input-wrong");
		searchInput.setAttribute("className", "text-field text-input-wrong");
		alert('Your search string must be longer than 2 characters.');
	}
	else{
		searchInput.setAttribute("class", "text-field");
		searchInput.setAttribute("className", "text-field");
		redirectPage('1-search-'+escape(searchInput.value)+'.html', 0)
	}
}