
// BEGIN POPUP NIEUWTJES !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

var popupStatus_news = 0;

//loading popup with jQuery magic!
function loadPopup_news(){
	//loads popup only if it is disabled
	if(popupStatus_news==0){
		$("#backgroundPopup").css({
			"opacity": "0.7"
		});
		$("#backgroundPopup, #popup_container_news, #popup_top_news, #popup_news, #popup_bottom_news").fadeIn("slow");
		
		popupStatus_news = 1;
	}
}

//disabling popup with jQuery magic!
function disablePopup_news(){
	//disables popup only if it is enabled
	if(popupStatus_news==1){

		$("#backgroundPopup, #popup_container_news, #popup_top_news, #popup_news, #popup_bottom_news").fadeOut("slow");


		popupStatus_news = 0;
	}
}

//centering popup
function centerPopup_news(){
	//request data for centering
	var windowWidth_news = document.documentElement.clientWidth;
	var windowHeight_news = document.documentElement.clientHeight;
	var popup_containerHeight_news = $("#popup_container_news").height();
	var popup_containerWidth_news = $("#popup_container_news").width();
	


	//alert (windowWidth_news);
	//alert (popupWidth);
	
	//centering
	$("#popup_container_news").css({
		"position": "fixed",
		"top": windowHeight_news/2-popup_containerHeight_news/2,
		"left": windowWidth_news/2-popup_containerWidth_news/2
	});
	
	//only need force for IE6
	$("#backgroundPopup").css({
		"height": windowHeight_news
	});
	
}
// END POPUP NIEUWTJES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

$(document).ready(function(){
	
//BEGIN LOADING POPUP NIEUWTJES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

	//Click the button event!
	$("#button_news").click(function(){
		//centering with css
		centerPopup_news();
		//load popup
		loadPopup_news();
	});
				
	$("#popupClose_corner_news").click(function(){
		disablePopup_news();
	});
	//Click out event!
	$("#backgroundPopup").click(function(){
		disablePopup_news();
	});
	//Press Escape event!
	$(document).keypress(function(e){
		if(e.keyCode==27 && popupStatus_news==1){
			disablePopup_news();
		}
	});

//END LOADING POPUP NIEUWTJES!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

});
