function openpopup(id){
	jQuery(document).ready(function(){	
		jQuery('#popup').load('http://ru.worldjumper.net/popup/'+id+'.php?id='+id,false,function(){
			//Setting the background dark
			jQuery('#popup-grayout').show();
			jQuery('#popup-grayout').css('height',jQuery(document).height()+'px');
			jQuery('#popup-grayout').css('z-index',50);
			
			//Making the box at the center of screen
			var scrollTop=document.body.scrollTop||document.documentElement.scrollTop;
			jQuery("#"+id).css('top',Math.floor((jQuery(window).height()-jQuery('#'+id).height())/2)+scrollTop);
			jQuery("#"+id).css('left',Math.floor((jQuery(window).width()-jQuery('#'+id).width())/2));
			jQuery("#"+id).css('z-index',51);
			
			//finally showing the popup.
			jQuery("#"+id).show();
		});
	});
}
function openpopupimg(id){
	jQuery(document).ready(function(){
		jQuery('#popup').load('http://ru.worldjumper.net/popup/image.php?id='+id,false,function(){
			//Setting the background dark
			jQuery('#popup-grayout').show();
			jQuery('#popup-grayout').css('height',jQuery(document).height()+'px');
			jQuery('#popup-grayout').css('z-index',50);
			
			//Making the box at the center of screen
			var scrollTop=document.body.scrollTop||document.documentElement.scrollTop;
			jQuery("#image").css('top',10+scrollTop);
			jQuery("#image").css('left',Math.floor((jQuery(window).width()-jQuery("#image").width())/2));
			jQuery("#image").css('z-index',51);
			
			//finally showing the popup.
			jQuery("#image").show();
		});
	});
}
function closepopup(id){
	jQuery('#popup-grayout').hide();
	jQuery("#"+id).hide();
}