function submitSearch(){
	
	retailcookie.setChip("searchQuery",document.searchForm.searchInput.value);
	clearField();
	location.replace("http://individual.troweprice.com/public/Retail/hUtility/Search-Results?vgnextrefresh=1")
}

//function used to remove Search T. Rowe Price background image when input field has focus
function bgChange(bg)
{
	document.getElementById('searchInput').style.backgroundImage="none";
}

function clearField()
{
	document.searchForm.searchInput.value = "";
}