function checkLength()
{
	var weetje = document.getElementById("weetje");
	if (weetje.value.length > 100)
	{
        alert("Het wist u datje is te lang!");
        return false;
    }
    return true;
}
