// Functions

function clearInput(x) {
	if(x.value=='Your email address') {
		x.value="";
		x.style.color="#000000";
	}
}

function fillInput(y) {
	if(y.value=='') {
		y.value="Your email address"; 
		y.style.color="#999999";
	}
} 
