<!--
//Inschrijven bel me
function GoBelMe(){

	if ( document.frmBELME.bmNaam.value.length < 1){
		alert('Naam a.u.b. invullen.');
		document.frmBELME.bmNaam.focus()
		return false}

	if ( document.frmBELME.bmTelefoon.value.length < 10){
		alert('Telefoonnummer a.u.b. invullen.');
		document.frmBELME.bmTelefoon.focus()
		return false}

    document.frmBELME.frmStatus.value = 'OPSLAAN';
}

//Weergeven of hide bel me
function ShowBelme(){

    var stsBM = document.getElementById("blkBELME_2").style.display;

if (stsBM == 'inline') {
    document.getElementById("blkBELME_2").style.display = 'none'}
    else{
    document.getElementById("blkBELME_2").style.display = 'inline'}
}

//Inschrijven bel me
function GoOfferte(Soort){

    if (Soort == 0){
	document.frmOfferte.frmStatus.value = 'OPSLAAN'
	document.frmOfferte.submit();}

    if (Soort == 1){
	document.frmOfferte.frmStatus.value = 'OPSLAAN'
	document.frmOfferte.frmSOORT.value = 'frmOfferte'
	document.frmOfferte.submit();}

    if (Soort == 2){
	document.frmOfferte.frmStatus.value = 'OPSLAAN'
	document.frmOfferte.frmSOORT.value = 'frmOfferte'
	document.frmOfferte.submit();}

    if (Soort == 3){
	document.frmOfferte.frmStatus.value = 'OPSLAAN'
	document.frmOfferte.frmSOORT.value = 'frmOfferte'
	document.frmOfferte.submit();}

    if (Soort == 4){
	document.frmOfferte.frmStatus.value = 'OPSLAAN'
	document.frmOfferte.frmSOORT.value = 'frmOfferte'
	document.frmOfferte.submit();}
		
}
-->

