function userFieldFocus() {
	document.getElementById('login_username').value = '';
}
function passFieldFocus() {
	document.getElementById('login_password').type = 'password';
	document.getElementById('login_password').value = '';
}
function userFieldBlur() {
	if (document.getElementById('login_username').value.length == 0) {
		document.getElementById('login_username').value = 'Username';
	}
}
function passFieldBlur() {
	if (document.getElementById('login_password').value.length == 0) {
		document.getElementById('login_password').type = 'text';
		document.getElementById('login_password').value = 'Password';
	}
}



/*//////////////////////////////////////////////////


POPUP WINDOW SCRIPT
used for the flash gallery player


//////////////////////////////////////////////////*/
function popWin(_url) {
	window.open( _url, "Gallery", "status=1, height=656, width=800, resizable=0, scrollbars=0")
}