    // Add this for PRINT - MOVE - CLOSE
    hs.skin = {
        contentWrapper:
            '<div class="highslide-header"><ul>'+
                '<li class="highslide-print">'+
                    '<a href="#" onclick="return hs.getExpander(this).printIframe()">'+
                    '<span>Print</span></a>'+
                '</li>'+
                '<li class="highslide-move">'+
                    '<a href="#" title="{hs.lang.moveTitle}" onclick="return false">'+
                    '<span>{hs.lang.moveText}</span></a>'+
                '</li>'+
                '<li class="highslide-close">'+
                    '<a href="#" title="{hs.lang.closeTitle}" onclick="return hs.close(this)">'+
                    '<span>{hs.lang.closeText}</span></a>'+
                '</li>'+
            '</ul></div>'+
            '<div class="highslide-body"></div>'+
            '<div class="highslide-footer"><div>'+
                '<span class="highslide-resize" title="{hs.lang.resizeTitle}"><span></span></span>'+
            '</div></div>'
    };
    // Print function for iframe
    hs.Expander.prototype.printIframe = function () {
       var name = this.iframe.name;
       frames[name].focus();
       frames[name].print();
       return false;
    }	