ÿþ<html> <head> <title>Sample Page Example</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> <!-- Replace the the following strings with their actual values: WIPSERVER - the DNS name of the WebInterpoint server SPCODE - a 3 letter Service Provider Account code CUSTOMERCODE - secondary service provider code (leave) null if not applicable BRANDNAME - the brand name as defined in the Brand Manager --> <script type="text/javascript" src="https://www.conferenceservers.com/browser/proxy.asp"></script> <script language=javascript> <!-- function Init() { // Call this function when page loads // Look for a stored cookie with user login information GetCookie(); // First check for proxy and set form value document.joinform.proxy.value = document.hostform.proxy.value = get_proxy(); // Test for proxy using functions provided by proxy.asp ** This is critical // Configure your service parameters here document.joinform.cust.value = document.hostform.cust.value= "UCI"; // Specify the service provider code document.joinform.brand.value = document.hostform.brand.value= "UCI_Web_Audio"; // Specify the brand to be used document.hostform.action= "https://www.conferenceservers.com/webagent/webagent.asp?"; // This is the address where form will be posted document.joinform.action= "https://www.conferenceservers.com/meetme/meetme.asp?"; // This is the address where form will be posted // Define whether form fields are required or optional document.joinform.code.required= true; document.joinform.fname.required= true; document.joinform.comp.required= false; document.joinform.email.required= false; document.hostform.UserName.required= true; document.hostform.Password.required= true; document.hostform.fname.required= true; document.hostform.comp.required= false; document.hostform.email.required= false; var sSchedId = GetQueryString()["schedid"]; if (sSchedId) { document.joinform.code.value = sSchedId; if (sSchedId.indexOf('s-') == 0) document.hostform.Password.value = sSchedId; document.hostform.mode.value = "scheduled"; } document.joinform.code.focus(); // Set cursor focus to the first field to be filled in on the form } function JoinConference() { // Optionally do some form validation here before submitting to the server // Remember to change the text strings to match your terminology var errString = ""; if ((document.joinform.code.value == "") && (document.joinform.code.required == true)) { errString += " - Enter the Access Code provided by your host\n"; } if ((document.joinform.fname.value == "") && (document.joinform.fname.required == true)) { errString += " - Provide your name\n"; } if ((document.joinform.comp.value == "") && (document.joinform.comp.required == true)) { errString += " - Provide your company name\n"; } if ((document.joinform.email.value == "") && (document.joinform.email.required == true)) { errString += " - Provide your email address\n"; } if (errString != "") { errString = "Please make the following changes before clicking the LOG IN button:\n\n" + errString; alert(errString); document.joinform.code.focus(); return false; } else { // Everything looks good -- return value "true" to the form so it is submitted SetCookie(); return true; } } function HostConference() { // Optionally do some form validation here before submitting to the server // Remember to change the text strings to match your terminology var errString = ""; if ((document.hostform.UserName.value == "") && (document.hostform.UserName.required == true)) { errString += " - Enter the Subscriber ID\n"; } if ((document.hostform.Password.value == "") && (document.hostform.Password.required == true)) { errString += " - Enter the Password\n"; } if ((document.hostform.fname.value == "") && (document.hostform.fname.required == true)) { errString += " - Provide your name\n"; } if ((document.hostform.comp.value == "") && (document.hostform.comp.required == true)) { errString += " - Provide your company name\n"; } if ((document.hostform.email.value == "") && (document.hostform.email.required == true)) { errString += " - Provide your email address\n"; } if (errString != "") { errString = "Please make the following changes before clicking the LOG IN button:\n\n" + errString; alert(errString); document.hostform.UserName.focus(); return false; } else { // Everything looks good -- return value "true" to the form so it is submitted SetCookie(); return true; } } function GetCookie(){ if (document.cookie == "") return false; var wholeCookie = unescape(document.cookie); if (wholeCookie.indexOf("wipCookie") != -1) { var smallCookie = wholeCookie.split(";"); var wipCookie, i; for (i=0; i<smallCookie.length; i++){ var temp = smallCookie[i].indexOf("wipCookie"); if (temp != -1) wipCookie = smallCookie[i]; } wipCookie = wipCookie.substring(11, wipCookie.length); // Remove the "wipcookie=" prefix from the string var cookieValue = wipCookie.split("&"); for (i=0; i<7; i++){ var currentValue = cookieValue[i]; currentValue = currentValue.split("="); currentValue = currentValue[1]; cookieValue[i] = currentValue; } document.hostform.host_id.value = cookieValue[0]; document.hostform.host_name.value = cookieValue[1]; document.hostform.host_company.value = cookieValue[2]; document.hostform.host_email.value = cookieValue[3]; document.joinform.join_name.value = cookieValue[4]; document.joinform.join_company.value = cookieValue[5]; document.joinform.join_email.value = cookieValue[6]; } } function SetCookie(){ var the_date = new Date("December 31, 2010"); var cookieDate = the_date.toGMTString(); var hostID = document.hostform.host_id.value; var hostName = document.hostform.host_name.value; var hostCompany = document.hostform.host_company.value; var hostEmail = document.hostform.host_email.value; var joinName = document.joinform.join_name.value; var joinCompany = document.joinform.join_company.value; var joinEmail = document.joinform.join_email.value; var wipCookie = "hostID=" + hostID + "&hostName=" + hostName + "&hostCompany=" + hostCompany + "&hostEmail=" + hostEmail; wipCookie += "&joinName=" + joinName + "&joinCompany=" + joinCompany + "&joinEmail=" + joinEmail; wipCookie = "wipCookie=" + escape(wipCookie); wipCookie += ";Expires=" + cookieDate + ";Path=/" + ";Domain=webdialogs.com"; document.cookie = wipCookie; } //--> </script> </head> <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0" onLoad="Init();"> <table border="0" cellspacing="0" cellpadding="0" align="center"> <tr> <td>&nbsp;</td> </tr> <tr> <td bgcolor="#FFFFFF">&nbsp;</td> </tr> <tr bgcolor="#FFFFFF"><td>&nbsp;</td> </tr> <tr bgcolor="#FFFFFF"> <td height="2" bgcolor="#FFFFFF"></td> </tr> <tr> <td> <table align="center" cellspacing="10" width=""> <tr> <td height="2" bgcolor="#FFFFFF" colspan="2"> <table width="600"><tr><td> This is a sample WebInterpoint login page.<br> You must search and replace the following strings with the appropriate values for this page to function properly: <ul> <li>WIPSERVER - the DNS name of the WebInterpoint server</li> <li>SPCODE - a 3 letter Service Provider Account code</li> <li>CUSTOMERCODE - secondary service provider code (leave) null if not applicable</li> <li>BRANDNAME - the brand name as defined in the Brand Manager</li> </ul> </td></tr></table> </td> </tr> <tr align="center"> <td> <form name="joinform" id="joinform" onsubmit="return(JoinConference());" target="_top" autocomplete="on"> <!-- Be sure to set the form target value to "_top" to allow the status window to be controlled by the conference window --> <input type="hidden" name="cust" value="" id="join_spcode" /> <!-- Required Service Provider Code --> <input type="hidden" name="SecSvcProv" value="" id="join_spcode" /> <!-- Optional Customer Account Name --> <input type="hidden" name="brand" value="" id="join_brand" /> <!-- // Required Brand Name --> <input type="hidden" name="proxy" value="auto" /> <!-- Some brand parameters can be overridden here --> <!-- <input type="hidden" name="joinpageurl" maxlength="255" tabindex="0" value="http://www.mydomain.com/join" /> <input type="hidden" name="hostjoinpageurl" maxlength="255" tabindex="0" value="http://www.mydomain.com/join" /> <input type="hidden" name="systemcheckredirect" maxlength="255" tabindex="0" value="http://www.mydomain.com/join" /> --> <!-- Voyant ReadiVoice Parameters <input type="hidden" name="ausrv" maxlength="255" tabindex="0" value=""/> // VAPI - Bridge IP Address <input type="hidden" name="acnum" maxlength="255" tabindex="0" value=""/> // VAPI - Access Number (e.g. 888...) <input type="hidden" name="accode" maxlength="255" tabindex="0" value=""/> // VAPI - Subscriber's Access Code if different from the value of UserName <input type="hidden" name="pscode" maxlength="255" tabindex="0" value=""/> // VAPI - Passcode if different from the value of Password --> <table width="300" height="325" border="0" bgcolor="#666666" > <tr align="center"><td colspan="2">&nbsp;</td></tr> <tr align="center"> <td colspan="2"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 16px;">Guest Login</span></td> </tr> <tr> <td colspan="2">&nbsp;</td> </tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">*Access Code:</span></td> <td><input type="text" name="code" maxlength="17" tabindex="1" value="" id="join_code" autocomplete="off"></td> </tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">*Name:</span></td> <td><input type="text" name="fname" maxlength="32" tabindex="2" value="" id="join_name" vcard_name="vCard.DisplayName"></td> </tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">Company:</span></td> <td><input type="text" name="comp" maxlength="32" tabindex="3" value="" id="join_company" vcard_name="vCard.Company"></td> </tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">E-Mail:</span></td> <td><input type="text" name="email" maxlength="255" tabindex="4" value="" id="join_email" vcard_name="vCard.Email"></td> </tr> <tr> <td colspan="2">&nbsp;</td> </tr> <tr> <td colspan="2">&nbsp;</td> </tr> <tr align="center"> <td colspan="2"><input name="button_login_join" type="submit" tabindex="5" value="Log In" style="color:#000000; background-color:#ffffff; font-weight:bold; font-family:Arial;"/></td> </tr> <tr align="center"><td colspan="2">&nbsp;</td></tr> </table> </form> </td> <td> <form name="hostform" id="hostform" onsubmit="return(HostConference());" target="_top" autocomplete="on"> <input type="hidden" name="cust" value="" id="host_spcode" /> <!-- Required Service Provider Code --> <input type="hidden" name="SecSvcProv" value="" id="host_spcode" /> <!-- Optional Customer Account Name --> <input type="hidden" name="brand" value="" id="host_brand" /> <!-- Required Brand Name --> <input type="hidden" name="proxy" value="auto" /> <input type="hidden" name="mode" value="" /> <!-- Required for scheduling --> <!-- Some brand parameters can be overridden here --> <!-- <input type="hidden" name="joinpageurl" maxlength="255" tabindex="0" value="http://www.mydomain.com/join" /> <input type="hidden" name="hostjoinpageurl" maxlength="255" tabindex="0" value="http://www.mydomain.com/join" /> <input type="hidden" name="systemcheckredirect" maxlength="255" tabindex="0" value="http://www.mydomain.com/join" /> --> <!-- Voyant ReadiVoice <input type="hidden" name="ausrv" maxlength="255" tabindex="0" value=""/> // VAPI - Bridge IP Address <input type="hidden" name="acnum" maxlength="255" tabindex="0" value=""/> // VAPI - Access Number (e.g. 888...) <input type="hidden" name="accode" maxlength="255" tabindex="0" value=""/> // VAPI - Subscriber's Access Code if different from the value of UserName <input type="hidden" name="pscode" maxlength="255" tabindex="0" value=""/> // VAPI - Passcode if different from the value of Password --> <table width="300" height="325" border="0" bgcolor="#666666" > <tr align="center"><td colspan="2">&nbsp;</td></tr> <tr align="center"> <td colspan="2"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 16px;">Host Login</span></td> </tr> <tr align="center"><td colspan="2">&nbsp;</td></tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">*Subscriber ID:</span></td> <td><input type="text" name="UserName" maxlength="17" tabindex="11" value="" id="host_id"></td> </tr> <tr> <td align="right" ><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">*Password:</span></td> <td><input type="text" name="Password" maxlength="17" tabindex="12" value="" id="host_code"></td> </tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">*Name:</span></td> <td><input type="text" name="fname" maxlength="32" tabindex="13" value="" id="host_name" vcard_name="vCard.DisplayName"></td> </tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">Company:</span></td> <td><input type="text" name="comp" maxlength="32" tabindex="14" value="" id="host_company" vcard_name="vCard.Company"></td> </tr> <tr> <td align="right"><span style="color: #FFFFFF; font-weight: bold; font-family: Arial, Helvetica, sans-serif; font-size: 12px;">E-Mail:</span></td> <td><input type="text" name="email" maxlength="255" tabindex="15" value="" id="host_email" vcard_name="vCard.Email"></td> </tr> <tr> <td colspan="2">&nbsp;</td> </tr> <tr align="center"> <td colspan="2"><input name="button_login_host" type="submit" tabindex="16" value="Log In" style="color:#000000; background-color:#ffffff; font-weight:bold; font-family:Arial;" /></td> </tr> <tr align="center"><td colspan="2">&nbsp;</td></tr> </table> </form> </td> </tr> </table> </td> </tr> <tr> <td> <div align="center"> <a href="http://www.conferenceservers.com/docs/user?brand=UCI_Web_Audio"><font face="Arial, Helvetica, sans-serif" color="#666666"><b>Online User Help</b></font></a> </div> </td> </tr> <tr> <td> <div align="center"> <a href="http://www.conferenceservers.com/browser?brand=UCI_Web_Audio"><font face="Arial, Helvetica, sans-serif" color="#666666"><b>System Compatibility Check</b></font></a> </div> </td> </tr> <tr> <td> <div align="center"> <a href="http://www.conferenceservers.com/UCI/UCI_UCI_Web_Audio/UCI_UCI_Web_Audio_install.exe"><font face="Arial, Helvetica, sans-serif" color="#666666"><b>Options Kit Download</b></font></a> </div> </td> </tr> <tr> <td bgcolor="#FFFFFF">&nbsp;</td> </tr> <tr> <td>&nbsp;</td> </tr> <tr> <td colspan="3">&nbsp;</td> </tr> <tr> <td colspan="3" class="copyrighttext"> <span class="copyrighttext"> <div align="center" style="color:#999999; font-family:Arial, Helvetica, sans-serif; font-size:10px;">Copyright &copy;2004 YourCompanyName. All rights reserved.</div> </span> </td> </tr> </table> </body> </html>