function clearText( field ){
	field.value = "";
}

function fillText( field ){
	if( field.value == "" )
		field.value = "Enter your email address here";
}