function clearValue(form, input, setText){
	eval ( "document." + form + "." + input + ".value='" + setText + "';" );
};


function checkBlur(form, input, current, getText){
	getValue = eval ( "document." + form + "." + input + ".value;" );

	if (getValue == "" || getValue == getText) {
		eval ( "document." + form + "." + input + ".value='" + current + "';" );
	} else {
		eval ( "document." + form + "." + input + ".value='" + getValue + "';" );
	};
};
