<!-- javascript file

function clearSearch()
{
	var thisObj=document.getElementById('searchbox');
	thisObj.value='';	
}

function hideSub(someID)
{
var thisObj = document.getElementById(someID).style;
thisObj.visibility = "hidden";
}

function showSub(someID)
{
var thisObj = document.getElementById(someID).style;
thisObj.visibility = "visible";
}

function clearCompanyType()
{
	document.getElementById('orgtype').value='';
}

//-->