﻿function doPrint(contentID){
    windowContent = window.open("", "newWin", "width=650,height=600,location=no,menubar=no,scrollbars=yes,status=no,toolbar=no");
    var nw = windowContent.document;
    var content = document.getElementById(contentID);
    
    nw.open();
    nw.write('<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns="http://www.w3.org/1999/xhtml"><head>');
    nw.write('<title>' + document.title + '</title>');
    nw.write('<link rel="stylesheet" type="text/css" href="/Frontend/Styles/Print.css" /></head>');
    nw.write('<body><div class="container"><div><img src="/Frontend/Images/print_header.png" alt="" /></div><div class="content">' + content.innerHTML + '</div>');
    nw.write('<div class="footer"><img src="/Frontend/Images/print_footer.png" alt="" /></div><div class="footertext"><center>Energi Fyn &#8226; Sanderumvej 16 &#8226; 5250 Odense SV &#8226; Tlf. 63 17 19 00 &#8226; Fax 63 17 19 19 &#8226; E-mail energifyn@energifyn.dk</center></div></div></body></html>');    
    nw.close();
    windowContent.print();
}
