imgSearchType = new Image();
imgSearchType.src = "Images/SearchButtonSearchForArtists.gif";

imgSearchTypeOn = new Image();
imgSearchTypeOn.src = "Images/SearchButtonSearchForArtistsOn.gif";

function submitSearchForm(form)
{
	var searchType = form.SEARCH_TYPE.options[form.SEARCH_TYPE.selectedIndex].value;
	
	if ((searchType == "") || (searchType == null))
	{
		// User did not select a Type of Search.
		alert("Please select a Type of Search !!");
		form.SEARCH_TYPE.focus();
	}
	else
	{
		form.submit();
	}
	return;
}

