function showWindow(){
    var maskHeight = jQuery(document).height();
    var maskWidth = jQuery(window).width();
    
    jQuery('#mask').css({'width':maskWidth,'height':maskHeight}); 
    jQuery('#mask').fadeIn();	        
   
    var winH = jQuery(document).height();
    var winW = jQuery(window).width();
  
    jQuery('#dialog').css('top', 100 + "px");
    jQuery('#dialog').css('left', winW/2-jQuery('#dialog').width()/2 + 40);
    
    jQuery('#dialog').fadeIn(); 
    jQuery('#dialog #ajax').html('boxiiiiiik');   
}
    
jQuery.noConflict();
    
jQuery(document).ready(function() {  
    showWindow();  
    jQuery('#close a').click(function(){
        jQuery('#mask').hide();
        jQuery('#dialog').hide();
    });
});

