//centering popup  
function centerPopup_golfclub(){  
//request data for centering  
var windowWidth_golfclub = document.documentElement.clientWidth;  
var windowHeight_golfclub = document.documentElement.clientHeight;  
var popupHeight_golfclub = $("#popup_golfclub").height();  
var popupWidth_golfclub = $("#popup_golfclub").width();  
//centering  
$("#popup_golfclub").css({  
"position": "absolute",  
"top": windowHeight_golfclub/2-popupHeight_golfclub/2,  
"left": "508px"  
});  
//only need force for IE6  
  
$("#popup_background").css({  
"height": windowHeight_golfclub  
});  
  
}  
	$(document).ready(function() {
  		$('popup_golfclub').hide();
		$('popup_background').hide();

		$('a#show_popup_golfclub').click(function(){
		centerPopup_golfclub();
		$('#popup_golfclub').fadeIn('slow');
		$('#popup_background').fadeIn('slow');
		});
		
		$('a#close_popup_golfclub').click(function(){
		centerPopup_golfclub();
		$('#popup_golfclub').fadeOut('slow');
		$('#popup_background').fadeOut('slow');
		});
		
		$("#popup_background").click(function(){  
		$('#popup_golfclub').fadeOut('slow');
		$('#popup_background').fadeOut('slow');  
		});
		
		$(document).keypress(function(e){  
		if(e.keyCode==27){  
		$('#popup_golfclub').fadeOut('slow');
		$('#popup_background').fadeOut('slow'); 
		}  
		});  
		
	});