// Search.js used by Search.xslt
// 28/08/2002 Colin Turner	Created.
// 13/08/2004	Pablo Humphreys	Added Web Abacus logging code
// 24/08/2004 Pablo Humphreys Only store into cookie. Don't log just yet.
// 31/08/2004 Pablo Humphreys Log search type.
// 02/09/2004 Pablo Humphreys Fix logging bugs.
// 21/09/2004	Pablo Humphreys Update unique search value
// 13/10/2004 Pablo Humphreys Move logging code to SearchWebLogging.js

function submitSupportSearch()
{
	if (checkSupportSearch())
	{
		document.frmSupportSearch.submit();
	}
}

function checkSupportSearch()
{
	if (document.frmSupportSearch.elements['inpSearchString'].value == '')
	{
		alert('Please input your search criteria.');
		return false;
	}
	else
	{
		return true;
	}	
}
