<!--

theInformerValue='Welcome to Another Brother Web!';
//theInformerValue=window.document.title;//'Welcome to the Another Brother WebSite!';

startClock();

  today = new Date();

  theDt=today.getDate();
  theMo=today.getMonth();
  theYr=today.getYear();
  theH=today.getHours();
  theM=today.getMinutes();
  theS=today.getSeconds();

  theRealTime=self.status.value;
  theTime=theTime.toString();
  
function startClock()
 {
  window.setTimeout( "startClock()", 5000 );

  today = new Date();

  theDt=today.getDate();
  theMo=today.getMonth()+1;
  theYr=today.getYear();
  theH=today.getHours();
  theM=today.getMinutes();
  theS=today.getSeconds();

if (theM < 10){
theMi = '0' + theM;
}
else {
theMi = '' + theM;
};

  theTime = theMo+'/'+theDt+'/'+theYr+' '+theH+':'+theMi;

  //oldStatus = window.status.value;
  self.status = theTime;
 }


function setDefaultValues()
 {
  document.menuForm.q.value=theInformerValue;
  document.menuForm.informerButton.value='STATUS';
/* 
  if (window.name!='bottom')
    { window.opener.menuForm.informer.value=theInformerValue; }
  else
    { window.self.menuForm.informer.value=theInformerValue; }
*/
 }

function informerOops()
 {
  if (document.menuForm.informerButton.value!='SEARCH')
   {
    document.menuForm.informerButton.value='OOPS...';
    //document.menuForm.action='search.html';
    document.menuForm.action='http://www.dogpile.com/texis/search'; //http://quixote.dogpile.com/texis/search';
    document.menuForm.method='GET';
    alert('OOPS!\n\nTo use the SEARCH function, please enter\nsearch criteria in the text field.');

    document.menuForm.q.value='';
    document.menuForm.q.focus();
   }
  if (document.menuForm.informerButton.value='SEARCH')
   {
    if (document.menuForm.q.value.length<=1)
     {
      //alert('HEY!\n\nTo use the SEARCH function, please enter\nsearch criteria in the text field.');
      document.menuForm.q.focus();
     }
   }
 }
  
function informerSearch()
 {
  informerOops();
/*
  document.menuForm.q.value='';
  document.menuForm.informerButton.value='SEARCH';
//   if (document.menuForm.q.value.length<=0)
//    {
//     alert('HEY!\n\nTo use the SEARCH function, please enter\nsearch criteria in the text field.');
//     document.menuForm.q.focus();
//    }
//   else
//    {
     document.menuForm.action='http://www.dogpile.com/texis/search'; //http://quixote.dogpile.com/texis/search';
     document.menuForm.method='GET';
//    }
*/
  }

function imageOverF(theTarget)
  {
  theInformerValue=theTarget.alt;

  var theName=theTarget.name;
  //var theName=document.theTarget;
  theNavCompName='document.'+theName+'.alt';
  
  theTarget.src='images/'+theName+'Over.gif';
  //theName.src='images/'+theName+'Over.gif';
  document.menuForm.q.value=theInformerValue;
  document.menuForm.informerButton.value='STATUS';
  //oldStatus = window.status.value;
  window.status=theTime+' | '+theInformerValue;
  }

function imageOutF(theTarget)
  {
  theInformerValue='Welcome to Another Brother Web!';

  var theName=theTarget.name;
  //var theName=document.theTarget;
  theNavCompName='document.'+theName+'.alt';

  theTarget.src='images/'+theName+'.gif';
  //theName.src='images/'+theName+'.gif';
  document.menuForm.q.value=theInformerValue;
  document.menuForm.informerButton.value='STATUS';
  //window.status=theInformerValue;
  }

//-->