function openEvent(url) {
        window.open(url, 'EventWindow', 'location=no,menubar=no,status=no,toolbar=no,width=635,height=460,scrollbars=no,resizeable=no');
}
function openRequirements(langPath) {
        if (langPath.match('q1234')) {
                window.open(langPath + 'help/requirements.html', 'HelpWindow', 'location=no,menubar=no,status=no,toolbar=no,width=670,height=430,scrollbars=yes,resizeable=no');
        }
        else {
                window.open(langPath + 'webcast/help/requirements.cgi', 'HelpWindow', 'location=no,menubar=no,status=no,toolbar=no,width=670,height=430,scrollbars=yes,resizeable=no');
        }
}
function openTestAudio(langPath) {
        if (langPath.match('q1234')) {
                window.open(langPath + 'help/testAudio.html', 'HelpWindow', 'location=no,menubar=no,status=no,toolbar=no,width=320,height=350,scrollbars=yes,resizeable=no');
        }
        else {
                window.open(langPath + 'webcast/help/testAudio.cgi', 'HelpWindow', 'location=no,menubar=no,status=no,toolbar=no,width=320,height=350,scrollbars=yes,resizeable=no');
        }
}