// JavaScript Document

function showInformatie () {
	$('#informatie').show();
	$('#specificaties').hide();
}

function showSpecificaties () {
	$('#specificaties').show();
	$('#informatie').hide();
}

function showDriedeetekeingen () {
	$('#driedeetekeningen_container').show();
	$('#referentiefotos_container').hide();
}
function showFotos () {
	$('#referentiefotos_container').show();
	$('#driedeetekeningen_container').hide();
}
function gotoVacature(id) {
	$('#vacature').val(id);
	$('#vacatureform').submit();
}

function openPDF (url) {
	window.open(url);
}
