window.onload = onLoad;

function onLoad()
{
	var emailField;
	emailField = document.getElementById('email');
	emailField.value = 'Type here';
	emailField.onfocus = onFocus;
}

function onFocus()
{
	if (this.value == 'Type here')
	{
		this.value = '';
	}
}