<!--
function bookmark(url, description)
{
netscape="Netscape User's hit CTRL+D on your keyboard to add a bookmark to this site."
if (navigator.appName=='Microsoft Internet Explorer')
{
window.external.AddFavorite(url, description);
}
else if (navigator.appName=='Netscape')
{
alert(netscape);
}
}
 
function Print()
{
	window.print();
}


function ClearText()
{
	document.SearchFrm.Keyword.value = "";
	
}


function ChangeColor(c)
{
	if(c == 1)
	{
	document.SearchFrm.subBtn.value = "Find";
	}
	
	else
	{
	document.SearchFrm.subBtn.value = "Search";
	}

}
-->