// JavaScript Document

/* This puts 'name' in the field when you are not there*/
function blurText(inputO, inputV){
	if(inputO.value==''){
		inputO.value=inputV
	}
}
/* This makes the field blank when user clicks or tabs into the field */
function focusText(inputO, inputV){
	if(inputO.value==inputV){
		inputO.value='';
	}
}