﻿function changeButton(image, imageName, onOff, lang) {
    if (onOff == 'Off') {
        image.src = "../imgs/" + imageName + lang + ".gif";
    } else {
        image.src = "../imgs/" + imageName + "_over" + lang + ".gif";
    }
}

function changeFontSize(curForm) {
    document.forms.item(0).procType.value = "Font"
    document.forms.item(0).submit();
}

function printPage(cid, lang) {

    document.printForm.cid.value = cid;
    document.printForm.lang.value = lang;
    window.open("print.aspx?cid=" + cid + "&lang=" + lang, "spellWin",
      'toolbar=0,location=0,directories=0,status=1,scrollbars=1,resizable=1,width=810,height=600');
}
