﻿// Printer Friendly: Calls the "printerfriendly.css" stylesheet
function PrintThisPage() {
    var sOption = "toolbar=yes,location=no,directories=yes,menubar=yes,";
    sOption += "scrollbars=yes,width=850,height=600,left=100,top=25";
    // Put the main or wrapper div tag here. All content within the div
    // tag will be formatted for printer friendly printing.
    var sWinHTML = document.getElementById('content').innerHTML;
    //JavaScript builds html page with content from div tag and styles accordingly
    var winprint = window.open("", "", sOption);
    winprint.document.open();
    winprint.document.write('<html><LINK href=/printerfriendly.css rel=Stylesheet>');
    winprint.document.write('<title>Ukrop&#39;s Super Markets Inc.</title>');
    winprint.document.write('<body>');
    winprint.document.write(sWinHTML);
    winprint.document.write('</body>');
    winprint.document.write('</html>');
    winprint.document.close();
    winprint.focus();
}
