
//----------------------------------------------------------------
// Login Panel
//----------------------------------------------------------------

function BuildPanel() {
document.write('<form name="logon"><table align="left" border="0"><tr><td align="left">');
document.write('<small><font face="Verdana">Username:</font></small></td>');
document.write('<tr><td><small><font face="Verdana"><input type="text" name="username" size="13"></font></small></td>');
document.write('<tr><td align="left"><small><font face="Verdana">Password:</font></small></td>');
document.write('<tr><td><small><font face="Verdana"><input type="password" name="password" size="13"></font></small></td></tr>');
if(imgSubmit == ""){
 document.write('<tr><td align="center" colspan="2"><p><input type="button" value="Logon" name="Logon" onclick="login(username.value,password.value)">'); 
} else {
 document.write('<tr><td align="center" colspan="2"><p><input type="image" src="'+imgSubmit+'" name="Logon" onclick="login(username.value,password.value)">');
}
if(imgReset == ""){
 document.write('<input type="reset" value="Reset" name="Reset">');
} else {
 document.write('<input type="image" src="'+imgReset+'" name="Reset" onclick="logon.reset();">');
}
document.write('</p></td></tr></table></form>');
}

