<!--
function SubmitContactForm()
{
   if (Validate('contactform')) 
   {
      document.contactform.submit()
   }
}

function SubmitGuestbookForm()
{
	var myTextField = document.getElementById('somuitkomst');
	var myDescriptionField = document.getElementById('description');
	
	var lowerDescription = myDescriptionField.value.toLowerCase()
	
	if (['viagra', 'penis', 'casino', 'cialis', 'levitra', 'prenhall', 'cheap', 'pharmacy', 'cash'].indexOf(lowerDescription) > -1 ) {
		alert('U gebruikt woorden die niet zijn toegestaan in ons gastenboek!')
	}
	else {
		if(myTextField.value != "") {
			if (Validate('guestbookform')) 
		{
		 if(myTextField.value == "10"){
		  document.guestbookform.submit()
		  }
		  else {
			alert("De uitkomst van de som is niet correct");
		  }
	   }
		}		
		else{
			alert("Vul de uitkomst van de som in.")		
		}
	}
}

function Bookmark()
{
   if (document.all)
   {
      window.external.AddFavorite(document.location.href, document.location.href);
   }
   else if (window.sidebar)
   {
      window.sidebar.addPanel(document.location.href, document.location.href, "")
   }
}

function LoadNews(intRecordID)
{
   document.location.href = 'default.aspx?pageID=' + intNieuwsBekijkenPageID + '&ID=' + intRecordID
}

function Search()
{
   var strSearch = document.search.keyword.value

   if ((strSearch.length == 0) || (strSearch == 'Zoeken naar'))
   {
      alert('Geen zoekopdracht opgegeven')
   }
   else
   {
      document.search.submit()
   }
}


//-->
