/* TVDP: functie die target=blank vervangt */
function nieuwVenster(url) {
	window.open(url,'_blank')
}
function activeerTaal(id,url) {
	location.href = '/index.php?actie=activeerTaal&id='+id
}
function overlayMelding(titel,melding) {
	var berichtHtml = '<div id="dialog" title="'+titel+'">'
	berichtHtml += '<p>'
	berichtHtml += melding
	berichtHtml += '</p>'
	berichtHtml += '</div>'
	$('body').append(berichtHtml)
	$('#dialog').dialog({
		bgiframe: true,
		modal: true,
		buttons: {
			Ok: function() {
				$(this).dialog('close')
				$('#dialog').remove()
			}
		}
	})
}
jQuery.preloadImages = function(){
	for(var i = 0; i<arguments.length; i++){
		jQuery("<img>").attr("src", arguments[i]);
	}
}
$(document).ready(function(){
	$('.whiteMe').css('background','#ffffff')
})