    function Pencere(adres){
        window.open(adres,"yeniPen","height=350, width=550,top=20,left=20,scrollbars=yes,toolbar=no,menubar=no,location=no,resizable=no");
    }

    function showContent(link){
       $('#loading').show();
       $('#site-content').hide().load(link, function() {
         $('#loading').hide();
         $(this).show();
       }); 
    }
         
    function showMehsul(link){
       $('#loading1').show();
       $('#mehsul-content').hide().load(link, function() {
         $('#loading1').hide();
         $(this).show();
       }); 
    }
    
    function SesVerme(link){
       $('#loading2').show();
       $('#ses-verme').hide().load(link, function() {
         $('#loading2').hide();
         $(this).show();
       }); 
    } 

    $(function() {
        $('#sesform').ajaxForm({
            target: '#ses-verme',
            type:'post',
            success: function() {
                $('#ses-verme').fadeIn('slow');
            }
        });
        
    });  
