// JavaScript Document
function setTextBoxValue(thefield) {
	
	if (vTxtBoxValue == thefield.value)
		thefield.value = "" 
}
    
function resetTextBoxValue(thefield) {
	
	if ("" == thefield.value)
		thefield.value = vTxtBoxValue;
}