//centering popup  
function centerPopup_annas(){  
//request data for centering  
var windowWidth_annas = document.documentElement.clientWidth;  
var windowHeight_annas = document.documentElement.clientHeight;  
var popupHeight_annas = $("#popup_annas").height();  
var popupWidth_annas = $("#popup_annas").width();  
//centering  
$("#popup_annas").css({  
"position": "absolute",  
"top": windowHeight_annas/2-popupHeight_annas/2,  
"left": "508px"
});  
//only need force for IE6  
  
$("#popup_background").css({  
"height": windowHeight_annas  
});  
  
}  
	$(document).ready(function() {
  		$('popup_annas').hide();
		$('popup_background').hide();

		$('a#show_popup_annas').click(function(){
		centerPopup_annas();
		$('#popup_annas').fadeIn('slow');
		$('#popup_background').fadeIn('slow');
		});
		
		$('a#close_popup_annas').click(function(){
		centerPopup_annas();
		$('#popup_annas').fadeOut('slow');
		$('#popup_background').fadeOut('slow');
		});
		
		$("#popup_background").click(function(){  
		$('#popup_annas').fadeOut('slow');
		$('#popup_background').fadeOut('slow');  
		});
		
		$(document).keypress(function(e){  
		if(e.keyCode==27){  
		$('#popup_annas').fadeOut('slow');
		$('#popup_background').fadeOut('slow'); 
		}  
		});  
		
	});