browser=navigator.appName
version=parseFloat(navigator.appVersion)
platform=navigator.platform
ie=(browser == "Microsoft Internet Explorer")
ie4=(navigator.appVersion.indexOf("MSIE 4"))
ie5=(navigator.appVersion.indexOf("MSIE 5"))
nav=(browser == "Netscape")
nav4=(nav) && (version < 5)
nav6=(nav) && (version >=5)
mac=(platform.indexOf("Mac") == 0)
win=(platform.indexOf("Win") == 0)
height=screen.availHeight
width=screen.availWidth
w=800
breaks=2
if (width < 700) {
  w=640;
  breaks=0;
  }
if (width > 950) {
  w=1024;
  breaks=4;
  }

globe=new Image()
globe.src="spinning.gif"
globe.onload = animate;

function animate() {
  document['spin'].src = globe.src;
  setTimeout("home()", 1000);
  }
function home() {
  location.replace("home.html");
  }

document.write('<STYLE TYPE="text/css">');
document.write('body {background-image: url("bkgd.jpg")}');
document.write('a {font-size: 10pt; text-decoration: none}');
document.write('a:link {color: #0000CC}');
document.write('a:visited {color: #FF3300}');
document.write('a:active {color: #000000}');
document.write('a:hover {color: #000000}');
document.write('p.link {font-family: Arial, sans-serif; text-align: center}');
document.write('p.slogan {font-family: Arial, sans-serif; font-size: 12pt; font-weight: bold; text-align: center}');
document.write('</STYLE>');
if (nav4) {
  document.write('<LAYER NAME="header" TOP=5 WIDTH=' + width + ' z-index=1>');
  }
else {
  document.write('<DIV ID=header STYLE="position: absolute; top: 5; width: ' + width + '; z-index: 1">');
  }
document.write('<CENTER><P CLASS="link"><IMG SRC="banner' + w + '.jpg" BORDER="0" ALT="AA World Class" TITLE="AA World Class"><BR>');
for(count = 0; count < breaks; count++)
  document.write('<BR>');
document.write('<IMG SRC="aaglobe.gif" NAME="spin" ALT="We work here, but we know how to work there." TITLE="We work here, but we know how to work there." BORDER="0"><BR>');
document.write('<A HREF="home.html">Click here to skip the animation and go directly to the home page</A></P></CENTER>');
for(count = 0; count < breaks; count++)
  document.write('<BR>');
document.write('<P CLASS="slogan">On the Cutting Edge of "What\'s New"</P>');
if (nav4) {
  document.write('</LAYER>');
  }
else {
  document.write('</DIV>');
  }
