FormUtils = function() {
}
FormUtils.prototype.inputClear = function( node, value ) {
	if( value == node.value ) node.value = '';
}
FormUtils.prototype.inputReset = function( node, value ) {
	if( node.value == '' ) node.value = value;
}
var FormUtils = new FormUtils();