﻿function clearBox(oTxt, txt) {
	if (oTxt == null || String(txt) == "undefined" || String(txt) == "") {
		return false;
	}
	
	if (oTxt.value == txt) {
		oTxt.value = "";
	}
	return true;
}