function NavigateURL(url){
	location.href = url;
}

function GetObj(id){
	if(eval(document.getElementById(id))){
		return document.getElementById(id)
	}
}

function HideContactLayer(id){
	
	GetObj('Bedrijfsnaam').disabled = true;
	GetObj('Contactpersoon').disabled = true;
	GetObj('Adres').disabled = true;
	GetObj('HuisNr').disabled = true;
	GetObj('Postcode').disabled = true;
	GetObj('Plaats').disabled = true;
	GetObj('Land').disabled = true;
	GetObj('Email').disabled = true;
	GetObj('Telefoon').disabled = true;
	GetObj('Fax').disabled = true;
	GetObj('Vraag').disabled = true;
	GetObj('Versturen').disabled = true;
	
	GetObj(id).style.visibility = 'hidden'
}
