
    function pop_up(arg,width,height){
      //alert(width);
      h = $(document).height();
      w = $(window).width();
      //alert(w);
      width = parseInt(width);
      height = parseInt(height);
      //var top = $(window).scrollTop();
      var top = (($(window).height() / 2) - (height / 2)) + $(window).scrollTop();
      var left = $(window).width()/2 - width/2;
      $("#img").css("top", top+"px");
      $("#img").css("left", left+"px");
      $("#prw").css("width", w+"px");
      $("#prw").css("height", h+"px");
      $("#prw").show();
      //$("#prw").fadeIn("slow");
      //$("#prw").children().fadeIn("slow");
      str = "";
      $("#img").html(str+" <img src=\""+arg+"\"/>");
      $("#img").css("maxWidth", "1000px");
      
    }
    
    function chiudi(){
      //$("#prw").fadeOut("slow");
      $("#prw").children().empty();
      $("#prw").css("width", 0+"px");
      $("#prw").css("height", 0+"px");
      $("#prw").hide();
    }


