var theText = ' type email, click GO button';
window.onload = function()
{
	document.getElementById("foo").value = theText;
	document.getElementById("foo").onfocus = emptyMe;
}
function emptyMe()
{
	if (theText == this.value) this.value = '';
}