function clearSearchArgText() {

	var sa = document.getElementById('scr_searchArg');
	var saText = sa.value;

	if (saText == 'Keyword or item#') {
		sa.style.color="rgb(0,0,0)";
		sa.value="";
	}

}

function resetSearchArgText() {

	var sa = document.getElementById('scr_searchArg');
	var saText = sa.value;

	if ((saText == '') || (saText == 'Keyword or item#')) {
		sa.style.color="rgb(100,100,100)";
		sa.value="Keyword or item#";
	}

}
