function setTextBoxDefault(textbox) {

	textbox._defaultValue = textbox.value;
	textbox.value = '';

	textbox.onblur = function() {
		if( textbox.value === '' ) {
			textbox.value = textbox._defaultValue;
		}
	}

	textbox.onfocus = function() {
		if( textbox.value === textbox._defaultValue ) {
			textbox.value = '';
		}
	}

}

