// JavaScript Document

function clearVals(frm, el, val){
		var newstr = new String();
		if(val != ''){
			newstr = '';
			document.forms[frm].elements[el].value = newstr;
		}
	}
	
function emailAddress(){
	var email = document.getElementById('email').value;
	var newstr = 'Email Address';
	if(email != newstr){
		//why I had to write this all out, Ill never know...
		document.getElementById('email').value = newstr;	
	}
}