<!-- Begin
// -- Never put on html page - always use .js file
// -- Do not change
function Entry(){
var go=0;
var user=document.entry.user.value;
user=user.toLowerCase();
var pwd=document.entry.pwd.value;
pwd=pwd.toLowerCase();
// -----------------------------------
// -- Members - add username and password
// -- Username 
if (user=="presentation" && pwd=="coach") { window.location="images/W_1.html"; go=1; }
// -- Username 
// -- if (user=="345" && pwd=="456") { window.location="images/1.htm"; go=1; }

// -- Template Code. Copy and past then remove comment characters
// -- xxxxxx - replace xxx's
if (user=="presentation" && pwd=="coach") { window.location="images/W_1.html"; go=1; }

// -- Access Denied
if (go==0) { window.location = "Workspace_login.html"; }
}
// --Log In
document.write('<form name=entry>');
document.write('<p class="Body_A">Please enter your User I.D. and Password below, then click on Log-In.<p>');
document.write('<table width="420.00" border="0" cellspacing="0" cellpadding="0" class="Body_A">');
document.write('<tr><td>');
document.write('<input type="text" name="user">');
document.write('</td> <td>');
document.write('<input type="password" name="pwd"> ');
document.write('</td><td>');
document.write('<input type="button" id="btntxt" value="    Log-In    " onClick="Entry()">');
document.write('</td></tr><tr>');
document.write('<td>User I.D.</td>');
document.write('<td bgcolor=#FFFFFF>Password</td>');
document.write('<td>Click</td>');
document.write('</tr></table>');
document.write('</form>');
// End -->