/*	Functions to handle case submittal form events */
// Function for form field onfocus
function onFocus(){
	if (this.value == this.defaultValue){
		this.value 					= "";
	}
	this.hasFocus					= true;
	this.style.backgroundColor		= "#ffa";
	this.style.color				= "#000";
}
