var popupRestartAfterClose = false;

function closePopup(){
	$('#hideshow').fadeOut('100', function(){
		if(popupRestartAfterClose)
			window.location.reload();
	});
	return false;
}

function showPopup(content, title, reload){
	popupRestartAfterClose = reload;
	if(title != ''){
		$('#popupTitle').html("<h3>"+title+"</h3>");
		$('#popupTitle').show();
	}
	else
		$('#popupTitle').hide();
	$('#popupContent').html(content);
	$('#hideshow').fadeIn('100');
	var windowWidth = $(window).width();
	var popupBlockWidth = $('#popup_block').width();
	var leftValue = (windowWidth - popupBlockWidth) / 2;
	leftValue += 252;
	//alert(popupBlockWidth);
    $("#popup_block").css('left', leftValue+'px');
}
