<!--
var defaultSearchFieldText = "Type in a word, or phrase, or a patent number here";
function setSearchFieldText(isFocus) {
	var searchField = getElement("search_field");
	if(isFocus) {
		if(searchField.value == defaultSearchFieldText) {
			searchField.value = "";
		}
	} else {
		if(searchField.value == "") {
			searchField.value = defaultSearchFieldText;
		}
	}
}
function linkMouseOver(linkTag)
{
	linkTag.style.cursor = 'pointer';
	window.status = linkTag.title;
}
function linkClick(linkTag)
{
	location.href=linkTag.title;
}
function linkMouseOut(linkTag)
{
	window.status = '';
}
function linkNewWindow(linkTag) 
{
	window.open(linkTag.title, "_blank");
}
//-->