function clearLoginField(theObject) {
	if (theObject.value == 'username') {
		theObject.value = '';
	} 
	if (theObject.value == 'password') {
		theObject.value = '';
		theObject.type = 'password';	
	}
}