// 2006 MediaMonks Multimedia Holdig B.V., All Rights Reserved.
// Robert Slootjes - robert@mediamonks.com

function updateForm()
{
	// declare the var
	theForm = document.getElementById('contact');
	// first make sure the form does not submit
	theForm.formready.value = 0;
	// post the page
	theForm.submit();
}
