


// Make the form clear or not when text is or is not entered

function clearForm() {

var formstate = document.searchbox.zoom_query.value;

if (formstate == "Search...")
 {
document.searchbox.zoom_query.value = "";
 }
else
 {
 }
}


function exitForm() {

var formstate = document.searchbox.zoom_query.value;

if (formstate)
{}
else {
document.searchbox.zoom_query.value = "Search...";
 }
}



