// Home page search box script
var lockChanges = 0;
function updateStyle(element) {
	if (lockChanges == 0) {
		element.value = "";
		element.style.color = "#000000";
		element.style.fontStyle = "normal";
	}
	lockChanges = 1;
}

function checkContents(element) {
	if (element.value == "") {
		element.style.color = "#CCCCCC";
		element.style.fontStyle = "italic";
		element.value = "scientific or common name";
		lockChanges = 0;
	}
}

// New window launch script

function poptastic(url,params)
{
	var newwindow=window.open(url,'',params);
	if (window.focus) {newwindow.focus()}
}