

function afm_is () {   
  var agt=navigator.userAgent.toLowerCase();
  this.major = parseInt(navigator.appVersion);
  this.minor = parseFloat(navigator.appVersion);
  this.nav  = ((agt.indexOf('mozilla')!=-1) && ((agt.indexOf('spoofer')==-1)
                   && (agt.indexOf('compatible') == -1)));
  this.nav3up = (this.nav && (this.major >= 3));
  this.nav4up = (this.nav && (this.major >= 4));
  this.nav5up = (this.nav && (this.major >= 5));
  this.nav6up = (this.nav5up && (agt.indexOf('netscape6'))>1);
  this.ie = (agt.indexOf("msie") != -1);
  this.ie3 = (this.ie && (this.major < 4));
  this.ie4 = (this.ie && (this.major == 4)) && (agt.indexOf("msie 5.0")==-1); 
  this.ie4up = (this.ie && (this.major >= 4)); 
  this.ie5up  = (this.ie  && !this.ie3 && !this.ie4);
  this.FrameOK = (this.nav3up || this.ie4up);
 }


function getMuseumPhone() {
  return"(252)322-4238";
 }


function afm_fillerText(qty) {
  var ft="";
  var t="Say anything here. Put text here. Talk and explain, whatever. Say anything here. Put text here. Talk and explain, whatever. ";
  for (var i=0; i<qty; i++) ft=ft + t;
  return ft;
 }

function afm_getFooter(imgPath) {
  var f="<TR><TD colspan='5'><IMG src='" + imgPath + "spacer.gif' height='15' width='1'  border='0'></TD></TR>"
       +    "<TR><TD><IMG src='" + imgPath + "spacer.gif' height='1' width='1' border='0'></TD>"
       +        "<TD colspan='3' bgcolor='#B0BFB0'><IMG src='" + imgPath + "spacer.gif' height='1' width='1' border='0'></TD>"
       +        "<TD><IMG src='" + imgPath + "spacer.gif' height='1' width='1' border='0'></TD></TR>"
       +    "<TR><TD colspan='5'><IMG src='" + imgPath + "spacer.gif' height='10' width='1'  border='0'></TD></TR>"
       +    "<TR><TD>&nbsp;</TD>"
       +        "<TD colspan='3'>"
       +           "<TABLE width='520' cellpadding='0' cellspacing='0' border='0'>"
       +           "<TR><TD><IMG src='" + imgPath + "spacer.gif' height='1' width='100'  border='0'></TD>"
       +               "<TD><IMG src='" + imgPath + "spacer.gif' height='1' width='320'  border='0'></TD>"
       +               "<TD><IMG src='" + imgPath + "spacer.gif' height='1' width='100'  border='0'></TD></TR>"
       +           "<TR><TD><IMG src='" + imgPath + "aurora-logo-tn.gif' height='26' width='57'  border='0'></TD>"
       +               "<TD class='footer' align='center'>400 MAIN STREET; P.O. BOX 352; AURORA, NC 27806-0352<BR>"
       +                   "TELEPHONE: " + getMuseumPhone() + " &nbsp; FAX: (252) 322-2220</TD>" 
       +               "<TD><A href='mailto:aurfosmus@yahoo.com'><IMG src='" + imgPath + "email.gif' height='26' width='89'  border='0'></A></TD></TR>"
       +           "</TABLE>"
       +        "<TD>&nbsp;</TD></TR>"
       +    "<TR><TD colspan='5'><IMG src='" + imgPath + "spacer.gif' height='10' width='1'  border='0'></TD></TR>";
  return f;
 }