// JavaScript Document

function belMijTerug () {
	new $.nyroModalManual({
		bgColor: '#000000',
		width: null, // default Width If null, will be calculate automatically
		height: null, // default Height If null, will be calculate automatically
		minWidth: 400, // Minimum width
		minHeight: 400, // Minimum height
		autoSizable: true,
		forceType: 'iframe',
		url: '/formulier_belmijterug.asp'
	});
}

function popUpFrame (popup_url,popup_w,popup_h) {
	new $.nyroModalManual({
		bgColor: '#000000',
		width: null, // default Width If null, will be calculate automatically
		height: null, // default Height If null, will be calculate automatically
		minWidth: popup_w, // Minimum width
		minHeight: popup_h, // Minimum height
		autoSizable: true,
		forceType: 'iframe',
		url: popup_url
	});
}
function openBedrijfsfilm (film) {
	new $.nyroModalManual({
		bgColor: '#000000',
		width: null, // default Width If null, will be calculate automatically
		height: null, // default Height If null, will be calculate automatically
		minWidth: 660, // Minimum width
		minHeight: 450, // Minimum height
		autoSizable: true,
		forceType: 'iframe',
		url: '/bedrijfsfilm/?film=' + film
	});
}


function openGrootbeeld (pdf) {
	window.open (pdf);
}

