/**
 * Change input value
 * @param element input
 * @param string string
 * @return
 */
function setInputDefaultValue(input,string) {
	if (!document.all) {
		input.setAttribute('onfocus',	"if (this.value == \"" + string + "\") this.value = '';");
		input.setAttribute('onblur',	"if (this.value == '') this.value = \"" + string + "\";");
		
		if (input.value == "") {
			input.value = string;
		}
	}
}

/**
 * Change input value
 * @param element input
 * @param string string
 * @return
 */
function setPasswordDefaultValue(input,string) {
	if (!document.all) {
		input.setAttribute('onfocus',	"if (this.value == \"" + string + "\") { this.value = ''; this.type='password';};");
		input.setAttribute('onblur',	"if (this.value == '') { this.value = \"" + string + "\"; this.type='text';};");
		
		if (input.value == "") {
			input.type	= 'text';
			input.value = string;
		}
	}
}