<HTML>
<HEAD>
<TITLE> DATA INSIGHTS </TITLE>
</HEAD>

<SCRIPT TYPE="text/javascript">

// ##################################################################
// The email window is called as the action of a button and depends on
// a form collection script being in the target URL sendmail.html

function emailwindow() 
{ 
picwindow = window.open("/sendmail.html",'email','width=500,height=500,resizable=yes'); 
picwindow.focus() ;
} 

// ##################################################################

// The rotating button menu script borrrowed from:
// http://onsol.com/programming/apps/scripts/javascript_rotating-button-menu.html

var startTime   =null;
var timerID     =null;
var initial     =new Date();
var pos         =0;
var menuItem    =null;

function initArray() {
this.length = initArray.arguments.length
for (var i = 0; i < this.length; i++)      {
this[i+1] = initArray.arguments[i]
}
}

function parsemenuItem(data,num) {
for(var i=0;i<data.length;i++)  {
if(data.substring(i,i+1)=="|")  break;
}
if (num==0) return(data.substring(0,i));
else  return(data.substring(i+1,data.length));
}

function startTimer() {
initial = new Date();
startTime=initial.getTime();
stopTimer();
menuItem = new initArray("WORK: websites and analysis|/WORK/index.html",
"POTM: programming contest|/POTM/index.php",
"FUN: a gnome in faraway lands|/GNEEN/index.html"
);
showTimer();
}

function stopTimer() {
timerID=null;
menuItem=null;
//clearTimeout(timerID);
}

function showTimer() {
pos= (pos == menuItem.length) ? 1 : pos + 1;
document.forms[0].elements[0].value=parsemenuItem(menuItem[pos],0);

timerID=window.setTimeout('showTimer()',2000);
}

function goToUrl()  {
//parent.welcome.location=parsemenuItem(menuItem[pos],1);
this.location=parsemenuItem(menuItem[pos],1);
return (false);
}

// ##################################################################



</SCRIPT> 

<BODY onLoad="window.startTimer()" bgcolor="BLACK">
<font face="Arial">


<TABLE BGCOLOR=#FFFFC6 width=90% align=center>
<TR><TD><CENTER><IMG SRC=/PICS/biglogo.gif>
<TR><TD><CENTER>
<FONT SIZE=+1>
<B>
"The purpose of computing is insight, not numbers."
</FONT>
- R. W. Hamming 1962
<TR><TD>
<TR><TD><CENTER>
<B>
"If you have to do something more than once, write a program to do it."
</FONT>
- Me
<TR><TD>
<TR><TD><CENTER>
<B>
"Compiled languages are a waste of precious programmer time."
</FONT>
- Me
<TR><TD>
</TABLE>

<P>


<TABLE WIDTH=90% BORDER=4 ALIGN=CENTER CELLPADDING=4>
<TR><TD>
<font face="Arial" color="D3A0D7">
Fred Hicinbothem lives here.  Fred joined Bell Labs in 1968 and 
retired after 35 years of service to form Data Insights.
This little corner of the web will serve as his home for a while.
He'll use it for his company, his avocations, and his pleasures - 
one of which is speaking about himself in the third person.
Click below and browse a while if you wish.
</TABLE>

<P>

<TABLE WIDTH=90% ALIGN=CENTER>
<TR><TD ALIGN=RIGHT WIDTH=50%>
<FORM>
<INPUT TYPE="button" VALUE="  WHERE TO? "  NAME="goTo"
SRC="/PICS/300x30.gif"
style="font-size: 16px; 
cursor: hand;
width: 300;
height: 30;
background: url(/PICS/300x30.gif);
color: black; 
font-weight: bold; 
font-family: arial;"
onClick="window.goToUrl()">
</FORM></CENTER>

<TD ALIGN=CENTER WIDTH=50%>
<FORM>
<INPUT TYPE="button" VALUE="Email Fred" NAME="sendit"
style="font-size: 16px; 
cursor: hand;
width: 200;
height: 30;
background: url(/PICS/200x30.gif);
color: black; 
font-weight: bold; 
font-family: arial;"
onClick="javascript:emailwindow();">
</FORM> 

</TABLE>


</BODY>
</HTML>

