<!--
var keywords;

function SaveTheValue(theInput){
	keywords = theInput.value;
	theInput.value = "";
}

function SetTheValue(theInput){
	if (theInput.value == "") {
		theInput.value = keywords;
	}
}
//-->