// JavaScript Document

function removeInput(){
	if(document.newsletterForm.email.value == "Nieuwsbrief email")
	   {
		   document.newsletterForm.email.value = "";
	   }
		   
}

function checkInput()
{
	if(	document.newsletterForm.email.value == "")
	{
		
		document.newsletterForm.email.value = "Nieuwsbrief email"
	}
}
