You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
259 lines
6.5 KiB
259 lines
6.5 KiB
4 months ago
|
<!-- $Id: cindex.htt,v 1.3 2002/02/14 21:02:55 ed Exp $ -->
|
||
|
<HTML>
|
||
|
<HEAD>
|
||
|
<TITLE>IBM - IBM Roadshows</TITLE>
|
||
|
<BASEFONT FACE="Arial">
|
||
|
<STYLE>
|
||
|
<!--
|
||
|
BUTTON {font-size: 10px;}
|
||
|
SELECT {font-size: 10px;}
|
||
|
INPUT {font-size: 10px;height: 20;}
|
||
|
-->
|
||
|
</STYLE>
|
||
|
<SCRIPT language="JavaScript">
|
||
|
<!--
|
||
|
|
||
|
// $Id: global.js,v 1.3 2002/02/14 21:51:15 ed Exp $
|
||
|
|
||
|
function right(e) {
|
||
|
if ("0" == 0) {
|
||
|
return true;
|
||
|
}
|
||
|
if ("gadmin" == "gadmin") {
|
||
|
return true;
|
||
|
}
|
||
|
if (navigator.appName == 'Netscape' && (e.which == 3 || e.which == 2)) {
|
||
|
alert("The source and all graphics on this page are proprietary and may not be viewed or copied.");
|
||
|
return true;
|
||
|
} else {
|
||
|
if (navigator.appName == 'Microsoft Internet Explorer' &&
|
||
|
(event.button == 2 || event.button == 3)) {
|
||
|
|
||
|
alert("The source and all graphics on this page are proprietary and may not be viewed or copied.");
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
// This function captures the keys pressed one at a time
|
||
|
function checkKeys(e) {
|
||
|
if (document.layers) {
|
||
|
if ( ! keyCodeOK(e, e.which) ) {
|
||
|
e.returnValue = null;
|
||
|
return false;
|
||
|
}
|
||
|
} else {
|
||
|
if ( ! keyCodeOK(e, event.keyCode) ) {
|
||
|
window.event.returnValue = null;
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
|
||
|
// We disallow some characters because they are used as delimiters in
|
||
|
// the text data files. This can be removed when we move to an RDBMS
|
||
|
// or change the delimiters.
|
||
|
function keyCodeOK(e, keyCode) {
|
||
|
// Disallowed characters: '&', ';'
|
||
|
if (keyCode == 38 || keyCode == 59 ) {
|
||
|
alert("'" + String.fromCharCode(keyCode) + "' may not be used, this character is reserved for internal use only.");
|
||
|
return false;
|
||
|
}
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
document.onkeypress = checkKeys;
|
||
|
document.onmousedown=right;
|
||
|
document.onmouseup=right;
|
||
|
if (document.layers)
|
||
|
window.captureEvents(Event.MOUSEDOWN);
|
||
|
if (document.layers)
|
||
|
window.captureEvents(Event.MOUSEUP);
|
||
|
window.onmousedown=right;
|
||
|
window.onmouseup=right;
|
||
|
|
||
|
//-->
|
||
|
</SCRIPT>
|
||
|
<SCRIPT language="JavaScript">
|
||
|
<!--
|
||
|
function wdw_onLoad() {
|
||
|
var browserName = navigator.appName;
|
||
|
var browserVersion = navigator.appVersion;
|
||
|
var sbrowser, nOffset, nVersion;
|
||
|
|
||
|
nOffset = browserName.indexOf("Microsoft",0);
|
||
|
nVersion = parseInt(browserVersion,10);
|
||
|
if (nOffset == -1) {
|
||
|
nOffset = browserName.indexOf("Netscape",0);
|
||
|
if (nOffset == -1) {
|
||
|
document.form1.browser.value = "NSCC/"+nVersion;
|
||
|
} else {
|
||
|
document.form1.browser.value = "NSNV/"+nVersion;
|
||
|
}
|
||
|
} else {
|
||
|
document.form1.browser.value = "MSIE/"+nVersion;
|
||
|
}
|
||
|
window.document.form1.uid.focus();
|
||
|
}
|
||
|
|
||
|
function validate_form(objForm) {
|
||
|
objForm.selfregister.value="";
|
||
|
if ((objForm.uid.value == "") || (objForm.pwd.value == "")) {
|
||
|
alert("You must Enter your assigned Login ID and Password");
|
||
|
objForm.uid.focus();
|
||
|
return false;
|
||
|
} else {
|
||
|
return true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function login_click(oForm) {
|
||
|
if (validate_form(oForm)) {
|
||
|
oForm.submit();
|
||
|
return true;
|
||
|
} else {
|
||
|
return false;
|
||
|
}
|
||
|
}
|
||
|
function getalogin(){
|
||
|
document.form1.selfregister.value="Y";
|
||
|
document.form1.submit();
|
||
|
return true;
|
||
|
}
|
||
|
function language_select(sLang) {
|
||
|
var sURL;
|
||
|
sURL = "/cgi-bin/visitor.pl?clid=roadshows&lang="+sLang;
|
||
|
window.document.location.replace(sURL);
|
||
|
return false;
|
||
|
}
|
||
|
|
||
|
window.onload=wdw_onLoad;
|
||
|
// -->
|
||
|
</SCRIPT>
|
||
|
</HEAD>
|
||
|
|
||
|
<BODY BACKGROUND="" BGCOLOR="#AFDCEC"
|
||
|
TEXT="#1531EC" LINK="#980517"
|
||
|
VLINK="#41A317" ALINK="#CCFB5D">
|
||
|
<CENTER>
|
||
|
<FORM NAME="form1" METHOD=POST ACTION="/cgi-bin/login.pl"
|
||
|
onSubmit="return validate_form(this)">
|
||
|
<INPUT TYPE=HIDDEN NAME="home" VALUE="client">
|
||
|
<INPUT TYPE=HIDDEN NAME="browser" SIZE=10 VALUE="">
|
||
|
<INPUT TYPE=HIDDEN NAME="lang" VALUE="enu">
|
||
|
<INPUT TYPE=HIDDEN NAME="selfregister" VALUE="">
|
||
|
<TABLE CELLSPACING=0 CELLPADDING=0 BORDER=0>
|
||
|
<TR>
|
||
|
<TD ALIGN="center" VALIGN="top">
|
||
|
<FONT SIZE=1 COLOR="#C6AFAC">
|
||
|
IBM Roadshows <BR>
|
||
|
<IMG SRC="/graphic/roadshows.jpg" width=150 BORDER=0><BR>
|
||
|
<BR>
|
||
|
</FONT>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD ALIGN="center" VALIGN="top">
|
||
|
<FONT SIZE=4 COLOR="#C6AFAC">
|
||
|
<B><I>IBM Roadshows</I></B><BR>
|
||
|
</FONT>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD ALIGN="center" VALIGN="middle">
|
||
|
<BR>
|
||
|
<FONT SIZE=2 COLOR="#C6AFAC">
|
||
|
Enter your assigned Login ID and Password<BR>
|
||
|
</FONT>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD ALIGN="center" VALIGN="top" NOWRAP>
|
||
|
<TABLE CELLSPACING=1 CELLPADDING=1 BORDER=0>
|
||
|
<TR>
|
||
|
<TD COLSPAN=2 ALIGN="center" VALIGN="top">
|
||
|
<FONT COLOR="">
|
||
|
<CENTER>
|
||
|
<B></B><BR>
|
||
|
</CENTER>
|
||
|
</FONT>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD ALIGN="right" VALIGN="top" NOWRAP>
|
||
|
Login ID:
|
||
|
</TD>
|
||
|
<TD ALIGN="left" VALIGN="middle" NOWRAP>
|
||
|
<INPUT TYPE=TEXT NAME="uid" SIZE=16 MAXLENGTH=16 VALUE="">
|
||
|
</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD ALIGN="right" VALIGN="middle" NOWRAP>
|
||
|
Password:
|
||
|
</TD>
|
||
|
<TD ALIGN="left" VALIGN="middle" NOWRAP>
|
||
|
<INPUT TYPE=PASSWORD NAME="pwd" SIZE=10 MAXLENGTH=100 VALUE="">
|
||
|
<INPUT TYPE=HIDDEN NAME="clid" SIZE=10 MAXLENGTH=100 VALUE="roadshows">
|
||
|
</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD ALIGN="right" VALIGN="top" NOWRAP>
|
||
|
<FONT COLOR="#FFFF00">
|
||
|
|
||
|
</FONT>
|
||
|
</TD>
|
||
|
<TD ALIGN="left" VALIGN="middle" NOWRAP>
|
||
|
<FONT COLOR="#FFFF00">
|
||
|
<INPUT TYPE=hidden NAME="cnd" VALUE="Login">
|
||
|
<INPUT TYPE=BUTTON name="login" value="Login" onClick="return login_click(document.form1);">
|
||
|
</FONT>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
<TR>
|
||
|
<TD ALIGN="right" VALIGN="top" NOWRAP>
|
||
|
<FONT size=1> </FONT>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
</TABLE>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
</TABLE>
|
||
|
<!--
|
||
|
<TABLE CELLSPACING=1 CELLPADDING=1 BORDER=1>
|
||
|
<TR>
|
||
|
<TD ALIGN="left" VALIGN="middle">
|
||
|
<font size=2>
|
||
|
<i><b>Dont' have a Login ID?</b></i><br>
|
||
|
<font size=1>
|
||
|
To take a public or private survey
|
||
|
at this site, you must first obtain a
|
||
|
Login ID.<br>All surveys are submitted
|
||
|
anonymously, that is, without reference
|
||
|
to you or<br>your Login ID unless you specifically
|
||
|
request that you be identified.<br>
|
||
|
</font>
|
||
|
</TD>
|
||
|
<TD ALIGN="center" VALIGN="middle">
|
||
|
<font size=1>
|
||
|
<b>CLICK TO<br>
|
||
|
<INPUT TYPE=BUTTON name="getusername" value="Register" onClick="return getalogin();"><BR>
|
||
|
A LOGIN ID</b><br>
|
||
|
</font>
|
||
|
</TD>
|
||
|
</TR>
|
||
|
</TABLE>
|
||
|
-->
|
||
|
<FONT SIZE=1 COLOR="#806F6C">
|
||
|
This site powered by <i>TestManager</i> and <i>SurveyManager</i> from
|
||
|
<A HREF="http://www.actscorp.com/softwareoverview.htm">ACTS Corporation</A>.<BR>
|
||
|
Copyright � 2001,2002 by<BR>ACTS Corporation,<BR>All Rights Reserved.<BR>
|
||
|
</FONT>
|
||
|
</CENTER>
|
||
|
</FORM>
|
||
|
</BODY>
|
||
|
</HTML>
|