function doSearch( qf )
{
if ( qf == "2" )   
{
	// query field is from the query search form (bub & site)
	if ( document.forms[0].sQuery.value !="" )
	{
		document.forms[0].Query.value = "" ;
		document.forms[0].submit() ;
	}
	else
	{
		alert( "Please enter some text to search for." ) ;
		document.forms[0].sQuery.focus() ;
	}
}
else
{
	// query field is from the top left corner - site search.
	if ( document.forms[0].Query.value != "" )
	{
		document.forms[0].submit() ;
	}
	else
	{
		alert( "Please enter some text to search for." ) ;
		document.forms[0].Query.focus() ;
	}
}
}

function callSiteSearch()
{
	// query field is from the top left corner - site search.
	if ( document.forms[0].Query.value != "" )
	{
		window.open("/sectors/ibia/webibia.nsf/SearchSite?OpenAgent&Query=" + document.forms[0].Query.value, "_self" ) ;
	}
	else
	{
		alert( "Please enter some text to search for." ) ;
		document.forms[0].Query.focus() ;
	}
}