﻿function FontSize(size) {
    cTags = document.getElementById("contentarea");
   // alert(size);
   cTags.style.fontSize = size + "px";
}
function SwapImg(ele, _url) {
    ele.src = _url;
}

function PrintPage() {
    var printReadyElem = document.getElementById("print_content");
    var gAutoPrint = true;
    html = "<html><head><title>Orchid Chemicals & Pharmaceuticals Ltd.</title><link rel=\"stylesheet\" type=\"text/css\" href=\"print.css\" /><link rel=\"stylesheet\" type=\"text/css\" href=\"print.css\" media=\"print\" /></head><body>";
    html += "<img src=\"./images/print_logo.jpg\" /><br>";
    if (printReadyElem != null) {
        html += printReadyElem.innerHTML;
    }
    html +="</body></html>";
    var printWin = window.open("", "printSpecial");
    printWin.document.open();
    printWin.document.write(html);
    printWin.document.close();
    if (gAutoPrint)
       printWin.print();
}

