/* Miscellaneous scripts for C & T Tools and Machine Inc. */
/* Website Design & Development www.blackcapdesign.com */

/* client-side search form validation */

function Validate() {
	if (document.search.q.value.length == 0)
	  	{alert("Please enter a word (or words) you wish to search for, then click the Search button."); return false;}				
	else return true;
}