﻿function biggerimage(id,l){
    document.getElementById(id).height=l;
    document.getElementById(id).width=l;
}
function showhide(id){
    if (document.getElementById){obj = document.getElementById(id);
        if (obj.style.display == "none"){obj.style.display = "";} 
        else {obj.style.display = "none";}
    }
}
function setClassname(id, cn)
{
document.getElementById(id).className= cn;
}
function changefont(x)
{
setClassname("templateclass", x);
}
function printPartOfPageFa(elementId) {
    var printContent = document.getElementById(elementId);
    var printWindow = window.open('', '', 'left=0,top=0,width=1024,height=768');
    printWindow.document.write('<html><head>');
    printWindow.document.write('<link href="../CSS/Fa/print.css" rel="stylesheet" type="text/css" />');
    printWindow.document.write('</head><body>');
//    printWindow.document.write('<img src="../images/Fa/Header.jpg" class="imgHeader" />');
    printWindow.document.write(printContent.innerHTML);
    printWindow.document.write('<br /><br /><br />http://www.abi.avicenna.ac.ir');
    printWindow.document.write('</body></html>');
    printWindow.document.close();    
    printWindow.focus();
    printWindow.print();
    printWindow.close(); 
}
function printPartOfPageEn(elementId) {
    var printContent = document.getElementById(elementId);
    var printWindow = window.open('', '', 'left=0,top=0,width=1024,height=768');
    printWindow.document.write('<html><head>');
    printWindow.document.write('<link href="../App_Themes/PrintEn.css" rel="stylesheet" type="text/css" />');
    printWindow.document.write('</head><body>');
    printWindow.document.write('<img src="../images/En/Header.jpg" class="imgHeader" />');
    printWindow.document.write(printContent.innerHTML);
    printWindow.document.write('</body></html>');
    printWindow.document.close();    
    printWindow.focus();
    printWindow.print();
    printWindow.close(); 
}
