function fn_frmSubmit()
{
	var searchKeyword;
	searchKeyword = document.frmSearch.txtSearch.value;
	if (searchKeyword != "Please enter artist, team, city or state")
	{
		document.frmSearch.action = "/general_search.asp?q=" + searchKeyword + "";
	}
	else
	{
		document.frmSearch.action = "/general_search.asp?q=";
	}
}
function fn_frmSubmitBody()
{
	var searchKeyword;
	searchKeyword = document.frmSearchBody.txtSearch.value;
	if (searchKeyword != "Please enter artist, team, city or state")
	{
		document.frmSearchBody.action = "/general_search.asp?q=" + searchKeyword + "";
	}
	else
	{
		document.frmSearchBody.action = "/general_search.asp?q=";
	}
}
function sendURL()
{
	
	fullURL = parent.document.URL;
	xxx = fullURL.substring(fullURL.indexOf('?')+1, fullURL.length)
	$.get("/include/urlProcessingAjax.asp?"+xxx,{},function(data){} );
}
