<!--


function newWindow(url) 

{

window.open(url,"kmzmap","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=no,resizable=yes,width=287,height=287");

}

function newPrintWindow(url) 
{
	if (url.indexOf("?") < 0){
		url = url.replace('&print=true','?print=true');
	}
	window.open(url,"print","toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,width=600,height=400");
}

function SubmitForm()
{
	if (document.getElementById('txtTerm').value != '')
	{
		//alert('/search/searchResults.aspx?term=' + document.getElementById('txtTerm').value);
		location.href= '/search/searchResults.aspx?term=' + document.getElementById('txtTerm').value;
		return true;
	}
	return false;
}
// -->