﻿//FUNCTION USED FOR PRINTING THE PAGE


function PrintThisPage() {
    var sPath = window.location.pathname;
    var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
    var sOption = "toolbar=yes,location=no,directories=yes,menubar=yes,";
    sOption += "scrollbars=yes,align=centre,width=780px,height=700px,top=25";
    var sWinHTML = document.getElementById('content_text').innerHTML;
    var winprint = window.open("", "", sOption);
    winprint.document.open();
    winprint.document.write('<html><head><link href="css/style.css"  rel="stylesheet" media="all" type="text/css" /></head>');
    winprint.document.write('<body style="font-family:Arial;" onload="window.print();">');
    winprint.document.write('</br></br>');
    winprint.document.write('<IMG width="295px" height="79px" SRC="images/logo.gif" />');
    winprint.document.write('</br></br></br>' + sWinHTML + '\r\n');
    winprint.document.write('</br></br>' + '<img src="images/point.gif" width="300px" height="1px"></img><a href="javascript:window.close();"><img src="images/close_win.gif" width="91px" height="13px"></img></a>' + '\r\n');
    winprint.document.write('</body></html>');
    winprint.document.close();
    winprint.focus();
}

