<!--
// RESET TEXT FIELDS FOR LOGIN BOX 
function textreset(){
		if(this.value == 'username' || this.value == 'password'){
			this.value = '';
			this.style.color = '#000';
		}
	}

window.onload = function() {
	document.forms[0].username.onfocus = textreset;
	document.forms[0].password.onfocus = textreset;
}
-->