﻿/*Change PrintContent to appropriate DIV or add this div to layouts */

    function Clickheretoprint() {
        var disp_setting = "toolbar=yes,location=no,directories=yes,menubar=yes,"; 
        disp_setting += "scrollbars=yes,width=650, height=600, left=100, top=25";
        var pgTitle = document.title;
        content_vlue = document.getElementById("PrintContent").innerHTML;
        var docprint = window.open("", "", disp_setting);
       	docprint.document.open();
        docprint.document.write('<html><he' + 'ad>'); 
 		docprint.document.write('<link rel="stylesheet" type="text/css" href="/Style%20Library/en-US/Core%20Styles/pageLayouts.css"/>');
		docprint.document.write('<link rel="stylesheet" type="text/css" href="/Style%20Library/en-US/Core%20Styles/rca.css"/>');
      	docprint.document.write('<link rel="stylesheet" type="text/css" href="../../Style Library/CustomStyles/core.css" />');
		docprint.document.write('<link rel="stylesheet" type="text/css" href="../../Style Library/CustomStyles/INGNNCustomStyles.css"/>');
        docprint.document.write('<link rel="stylesheet" type="text/css" href="../../Style Library/CustomStyles/INGNNprint.css"/>');
		docprint.document.write('<link rel="stylesheet" type="text/css" href="../../Style Library/CustomStyles/INGNNCustomStyles.css" media="print" />');
        docprint.document.write('<link rel="stylesheet" type="text/css" href="../../Style Library/CustomStyles/INGNNprint.css" media="print" />');
        docprint.document.write('<title>' + pgTitle + '</title>');
        docprint.document.write('<TABLE><TR><TD class="PrintLogo"></TD><TD class="ms-sitetitle"><A>ING Nationale-Nederlanden</A></TD></TR></TABLE>');
        docprint.document.write('</he' + 'ad><bo' + 'dy onLoad="self.print()"><left>');
        docprint.document.write(content_vlue);
        docprint.document.write('</left></body></html>');
        docprint.document.close();
        docprint.focus();
    }


