﻿function Collapse(a) {

    if (document.getElementById(a).style.display == "") {
        document.getElementById(a).style.display = "none";

    }
    else {
        document.getElementById(a).style.display = "";
    }

}


function OpenWindow(thePage, theTitle) {
    window.open(thePage, theTitle, 'height=550,width=617,scrollbars=yes,resizable=yes');
}


