function showPopupPanel(popID,popWidth)
{
		$('#' + popID).fadeIn().css({ 'width': Number( popWidth ) }).prepend
		('<a href="#" class="close"><img src="/images/close_pop.png" class="btn_close" onclick="closePopup()" title="Pencereyi Kapat" alt="Close" /></a>');
		
        if(popID == "popup2")
        {
        $("a.close").hide();
        }        
		
		var popMargLeft = ($('#' + popID).width() + 80) / 2;

		$('#' + popID).css({ 
			'margin-left' : -popMargLeft
		});
		
		$('body').append('<div id="fade"></div>'); //Add the fade layer to bottom of the body tag.
		$('#fade').css({'filter' : 'alpha(opacity=80)'}).fadeIn(); //Fade in the fade layer 
		
		return false;		
}

function closePopup()
{	
  	$('#fade , .popup_block').fadeOut(function() {
			$('#fade, a.close').remove();  
			$("#popupResult").hide();			
	});	
	return false;
}

function exitPanel() {
    var dataString = "{id:'" + 1 + "'}";
        $("#popup2 #popupResult").html('<center><img src="/images/ajax-loader.gif" /></center>');
        $.ajax({
            success: function (result) {
                closePopup();
            },
            error: function () {
                $('#popup2 #popupResult').show().html("Bir sorun oluþtu. Lütfen F5'e basarak sayfayý yenileyiniz...");
            }
        });
}

