﻿
function ChangeText(Code) {
    var Container = document.getElementById('ctl05_TextContainer');
    var divs     = Container.getElementsByTagName("div");
    for (var i = 0; i < divs.length; i++) {
        divs[i].style.display      = 'none';
        divs[i].style.visibility   = 'hidden';
    }
    document.getElementById(Code).style.display = 'inline';
    document.getElementById(Code).style.visibility = 'visible';
}

function OpenPage(URL, PageCode, WinWidth, WinHeight) {
    window.open(URL + PageCode + '.aspx', '', 'width=' + WinWidth + ', height=' + WinHeight + ', left=' + ((screen.availWidth - WinWidth) / 2) + ',top=' + ((screen.availHeight - WinHeight) / 2) + ',scrollbars=1,menu=no,status=yes');
}
