var notsubmitted = true;
var submittrapped = true;
function submitSearch(formname)
{
	if(notSubmitted())
	{
		this.document.forms[formname].submit();
	}
}

function notSubmitted()
{
	if(notsubmitted)
	{
		notsubmitted = false;
		return(true);
	}
	return(false);
}
