/**
 * @author LEC
 */
function prosearchSubmit(){
	var theForm = document.getElementById('prosearchForm');
	theForm.value.value = theForm.value.value == "Enter Keyword" ? "" : theForm.value.value;
	theForm.submit();
}

function siteSearchSubmit(){
	var theForm = document.getElementById('siteSearch');
	theForm.submit();
}

function clearValue(){
	var field = document.getElementById('prosearchForm').value;
	field.value = "";
}
