// JavaScript Document
function processForm(obj, objAct, objVar) {
	if (objAct == 'clear') {
		// obj.select();
		if (obj.value == objVar) {
			obj.value = "";
		}
	}
	if (objAct == "fill") {
		if (obj.value == "") {
			obj.value = objVar;
		}
	}
}