﻿<!--
	//  Filename:		Utilities.js
	//  Project:		www.LuciusPitkin.com/js
	//  Description:	General JavaScript Utilities used throughout the website

	// Site search click event
	function SearchSite( strControlID )
	{
		if ( objTerms = document.getElementById( strControlID ) )
		{
			if ( objTerms.value == "" )
			{
				alert( "Please provide your search criteria." );
				return;
			}
			window.location = "search/search.pl?terms=" + objTerms.value;
		}
	}
//-->
