//centering popup  
function centerPopup_uta(){  
//request data for centering  
var windowWidth_uta = document.documentElement.clientWidth;  
var windowHeight_uta = document.documentElement.clientHeight;  
var popupHeight_uta = $("#popup_uta").height();  
var popupWidth_uta = $("#popup_uta").width();  
//centering  
$("#popup_uta").css({  
"position": "absolute",  
"top": windowHeight_uta/2-popupHeight_uta/2,  
"left": "508px"  
});  
//only need force for IE6  
  
$("#popup_background").css({  
"height": windowHeight_uta  
});  
  
}  
	$(document).ready(function() {
  		$('popup_uta').hide();
		$('popup_background').hide();

		$('a#show_popup_uta').click(function(){
		centerPopup_uta();
		$('#popup_uta').fadeIn('slow');
		$('#popup_background').fadeIn('slow');
		});
		
		$('a#close_popup_uta').click(function(){
		centerPopup_uta();
		$('#popup_uta').fadeOut('slow');
		$('#popup_background').fadeOut('slow');
		});
		
		$("#popup_background").click(function(){  
		$('#popup_uta').fadeOut('slow');
		$('#popup_background').fadeOut('slow');  
		});
		
		$(document).keypress(function(e){  
		if(e.keyCode==27){  
		$('#popup_uta').fadeOut('slow');
		$('#popup_background').fadeOut('slow'); 
		}  
		});  
		
	});