// JavaScript Document

function clearValue(element) {
		if (element.value == "Search SPARCS")
				{
					element.value = ""; 
					element.style.color = "#000000";
					element.style.fontStyle = "normal";
				}
		}
