function ack(absPath) {
    var w = 200;
    var h = 270;
    var winl = (screen.width - w) / 2;
    var wint = (screen.height - h) / 2;
    var win = window.open("", "win", "width="+w+",height="+h+",top="+wint+",left="+winl+"resizable=0");
    with (win.document) {
        open("text/html", "replace");
        write('<html>\n' +
              '<head>\n' +
              '<title>Acknowledgements</title>\n' +
              '</head>\n' +
              '<body bgcolor="#FFFFFF">\n' +
              '<div align="left"><br>\n' +
              '<span style="font-family: arial, helvetica; font-size: 10px;">Powered By <b><a href="http://www.joomla.org">Joomla!</a></b><br>\n'+
              '<p>Original Brightside template designed by <a href="http://www.styleshout.com/">Erwin Aligam</a><br>\n'+
			  'Template modified and redistributed under <a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a>.</p>\n'+
              '<p>Graphics by <a href="http://www.famfamfam.com/lab/icons/silk/">FamFamFam</a>.<br>\n'+
              'Used under <a href="http://creativecommons.org/licenses/by/2.5/">Creative Commons Attribution 2.5 License</a>.</p>\n'+
              '<p>JPStyle3 template modifications made by <b>Joe Perkins</b>, Wooloowin State School, joseph.perkins@eq.edu.au</p>\n'+
              '<p>Visit <a href="https://ictcommunity.eq.edu.au/">ICT Community</a> for more information about JPStyle3.</p>\n'+
              '</span>' + 
              '</div>\n' +
              '</body>\n' +
              '</html>');
        close();
    }
}