function clearComments (theTxtBox) {
	//if (theTxtBox.innerHTML=='Search') {
		theTxtBox.innerHTML='';
	//} 
}

function checkComments (theTxtBox, theValue) {
	if (theTxtBox.innerHTML=='') {
		theTxtBox.innerHTML=theValue;
	}
}