﻿function goToMeetingW() {
    jUrl = "https://www.gotomeeting.com/join/";
    meetID = document.joinMeetingW.MeetingID.value;
    //document.joinMeetingW.action = jUrl + meetID;
    var newWindow = window.open(jUrl + meetID, "_blank", 'width=1024, height=600, status=yes, resizable=yes, menubar=yes, toolbar=yes, location=yes, directories=yes, scrollbars=yes');
    newWindow.focus();
}

document.write('<table cellpadding="0" cellspacing="0" border="0" bgcolor="#fff">');
document.write('<tr>');
document.write('<td>');
document.write('<form action="" method="post" name="joinMeetingW">');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td>');
document.write('<img src="images/meetNowTopWh.gif" width=158 height=26>');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td align="center">');
document.write('<input type="text" name="MeetingID" size="10">');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td>');
document.write('<input type="image" name="btnClick" src="images/meetNowBotWh.gif" border="0" height="86" width="158" onClick="return goToMeetingW();">');
document.write('</td>');
document.write('</tr>');
document.write('<tr>');
document.write('<td>');
document.write('</form>');
document.write('</td>');
document.write('</tr>');
document.write('</table>');
