$(document).ready(function() {
	DLLpopUp();
});


function noSpam(user,domain){
	locationstring = "mailto:" + user + "@skynet.be?subject=Graag%20meer%20info%20ivm%20de%20Bakkersmolen";
	window.location = locationstring;
}


function DLLpopUp() {

	$("div.poptxt").hide();
	
	$("a.popUp").click(function(){
		centerPopup();  
		$("div.poptxt:visible").fadeOut();
		$("#popup_" + $(this).attr('rel')).fadeIn("fast");
		return false;
	});
	
	$("a.popClose").click(function(){
		$(this).parent().fadeOut();
		return false;
	});

}

//centering popup  
function centerPopup(){  
//request data for centering  
var windowWidth = document.documentElement.clientWidth;  
// var windowHeight = document.documentElement.clientHeight;  
// var popupHeight = $("div.poptxt").height();  
var popupWidth = $("div.poptxt").width();  
//centering  
$("div.poptxt").css({  
// "top": windowHeight/2-popupHeight/2,  
"left": windowWidth/2-popupWidth/2  
});  
//only need force for IE6  
 }
