$(function(){
    $("head").append("<link>");
    css = $("head").children(":last");
    css.attr({
      rel:  "stylesheet",
      type: "text/css",
      href: "/tiilib/3rd-party/boxy/stylesheets/boxy.css"
    });

    $.getScript('/tiilib/3rd-party/boxy/javascripts/jquery.boxy.js',function(){
        $('#btnAddTestimonial').click(function(){
            new Boxy('<iframe frameborder=0 src="testimonial.form.php" width="440" height="550" marginwidth=0 marginheight=0>You need a Browser which can display iframes</iframe>',{
                unloadOnHide: true, 
                draggable: false, 
                show: true, 
                modal: true, 
                title:  "Submit Testimonial", 
                closeText:"[ Close ]"
            });
        });
    });
});
