window.addEvent('domready', function() {
	// Execute the pop-up functions on page load
	setPopLinks();
});

/********** Pop-up functions **************************************************/
	function setPopLinks() {
		var oHyperlinks = $$('a');

		for (var iCnt = 0; iCnt < oHyperlinks.length; iCnt++) {
			if (oHyperlinks[iCnt].get('class') == 'popup' || oHyperlinks[iCnt].get('class') == 'popupNoImg') {
				oHyperlinks[iCnt].addEvent('click', function() {
					return pop(this.get('href'));
				});

				if (oHyperlinks[iCnt].get('title') == null) { oHyperlinks[iCnt].set('title', ' '); }
				oHyperlinks[iCnt].set('title', oHyperlinks[iCnt].get('title') + ' (opent in nieuw venster)');
			}
		}
	}

	function pop(sURL) {
		var oNewWindow = window.open(sURL);

		if (window.focus) {
			oNewWindow.focus();
		}

		return false;
	}
/******************************************************************************/