<!-- Hide

// Original code copyright 2004 e-QualIT.  All rights reserved.
// Other copyrighted code is the property of its respective ownver.

function writeDate() {
   nowDate=new Date();
   daynum = nowDate.getDay();
   date = nowDate.getDate();
   monthnum = nowDate.getMonth();
   year = nowDate.getYear();
   switch(daynum.toString()) {
   case "0":
      day = "Sun";
      break;
   case "1":
      day = "Mon";
      break;
   case "2":
      day = "Tue";
      break;
   case "3":
      day = "Wed";
      break;
   case "4":
      day = "Thu";
      break;
   case "5":
      day = "Fri";
      break;
   case "6":
      day = "Sat";
      break;
   }
   switch(monthnum.toString()) {
   case "0":
      month = "Jan";
      break;
   case "1":
      month = "Feb";
      break;
   case "2":
      month = "Mar";
      break;
   case "3":
      month = "Apr";
      break;
   case "4":
      month = "May";
      break;
   case "5":
      month = "Jun";
      break;
   case "6":
      month = "Jul";
      break;
   case "7":
      month = "Aug";
      break;
   case "8":
      month = "Sep";
      break;
   case "9":
      month = "Oct";
      break;
   case "10":
      month = "Nov";
      break;
   case "11":
      month = "Dec";
      break;
   }
   if (year < 2000) {
      year += 1900;
   }
   document.write(month + " " + date + ", " + year);
}

// Code to Disable Right Clicks follows:
var message="";
function clickIE() {
   if (document.all) {(message);return false;}
}
function clickNS(e) {
   if (document.layers||(document.getElementById&&!document.all)) {
      if (e.which==2||e.which==3) {(message);return false;}
   }
}
if (location.href.indexOf("res_songs.shtml") == -1) {
   if (document.layers) {
      document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;
   } else {
      document.onmouseup=clickNS;
      document.oncontextmenu=clickIE;
   }
   document.oncontextmenu=new Function("return false")
}
// End Right Click Code

function writeFlash(scrFPath,scrW,scrH,scrID,scrLp) {
	if (window.ActiveXObject) {
		with(document) {
			write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
			write(' codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"');
			write(' width="'+scrW+'" height="'+scrH+'" id="'+scrID+'">');
			write('<param name="movie" value="'+scrFPath+'" \/>');
			write('<param name="loop" value="'+scrLp+'" \/>');
			write('<param name="menu" value="false" \/>');
			write('<param name=quality value="high" \/>');
			write('<\/object>');
		}
	} else {
		if (typeof XMLHttpRequest == "object") {
			with(document) {
				write('<object id="'+scrID+'" data="'+scrFPath+'"');
				write(' type="application/x-shockwave-flash"');
				write(' width="'+scrW+'" height="'+scrH+'">');
				write('<param name="movie" value="'+scrFPath+'" \/>');
				write('<param name="quality" value="high" \/>');
				write('<param name="loop" value="'+scrLp+'" \/>');
				write('<param name="menu" value="false" \/>');
				write('<p>You need Flash for this.');
				write(' Get the latest version from');
				write(' <a href="https://www.macromedia.com/downloads">here<\/a>.');
				write('<\/p>');
				write('<\/object>');
			}
		} else {
			with(document) {
				writeln('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" WIDTH="'+scrW+'" HEIGHT="'+scrH+'" id="'+scrID+'">');
				writeln('<PARAM NAME="movie" VALUE="'+scrFPath+'" \/>');
				writeln('<PARAM NAME="quality" VALUE="high" \/>');
				writeln('<PARAM NAME="loop" VALUE="'+scrLp+'" \/>');
				writeln('<EMBED src="'+scrFPath+'" quality="high" loop="'+scrLp+'" WIDTH="'+scrW+'" HEIGHT="'+scrH+'" NAME="'+scrID+'" TYPE="application/x-shockwave-flash" PLUGINSPAGE="https://www.macromedia.com/go/getflashplayer">');
				writeln('</EMBED>');
				write('</OBJECT>');
			}
		}
	}
}

function verifyEmail(emailStr) {
  /* The following variable tells the rest of the function whether or not
  to verify that the address ends in a two-letter country or well-known
  TLD.  1 means check it, 0 means don't. */
  var checkTLD=1;
  /* The following is the list of known TLDs that an e-mail address must end with. */
  var knownDomsPat=/^(com|net|org|edu|int|mil|gov|arpa|biz|aero|name|coop|info|pro|museum)$/;
  /* The following pattern is used to check if the entered e-mail address
  fits the user@domain format.  It also is used to separate the username
  from the domain. */
  var emailPat=/^(.+)@(.+)$/;
  /* The following string represents the pattern for matching all special
  characters.  We don't want to allow special characters in the address. 
  These characters include ( ) < > @ , ; : \ " . [ ] */
  var specialChars="\\(\\)><@,;:\\\\\\\"\\.\\[\\]";
  /* The following string represents the range of characters allowed in a 
  username or domainname.  It really states which chars aren't allowed.*/
  var validChars="\[^\\s" + specialChars + "\]";
  /* The following pattern applies if the "user" is a quoted string (in
  which case, there are no rules about which characters are allowed
  and which aren't; anything goes).  E.g. "jiminy cricket"@disney.com
  is a legal e-mail address. */
  var quotedUser="(\"[^\"]*\")";
  /* The following pattern applies for domains that are IP addresses,
  rather than symbolic names.  E.g. joe@[123.124.233.4] is a legal
  e-mail address. NOTE: The square brackets are required. */
  var ipDomainPat=/^\[(\d{1,3})\.(\d{1,3})\.(\d{1,3})\.(\d{1,3})\]$/;
  /* The following string represents an atom (basically a series of non-special characters.) */
  var atom=validChars + '+';
  /* The following string represents one word in the typical username.
  For example, in john.doe@somewhere.com, john and doe are words.
  Basically, a word is either an atom or quoted string. */
  var word="(" + atom + "|" + quotedUser + ")";
  // The following pattern describes the structure of the user
  var userPat=new RegExp("^" + word + "(\\." + word + ")*$");
  /* The following pattern describes the structure of a normal symbolic
  domain, as opposed to ipDomainPat, shown above. */
  var domainPat=new RegExp("^" + atom + "(\\." + atom +")*$");
  /* Finally, let's start trying to figure out if the supplied address is valid. */
  /* Begin with the coarse pattern to simply break up user@domain into
  different pieces that are easy to analyze. */
  var matchArray=emailStr.match(emailPat);
  if (matchArray==null) {
    /* Too many/few @'s or something; basically, this address doesn't
    even fit the general mould of a valid e-mail address. */
//    alert("Email address seems incorrect (check @ and .'s)");
    return false;
  }
  var user=matchArray[1];
  var domain=matchArray[2];

  // Start by checking that only basic ASCII characters are in the strings (0-127).
  for (i=0; i<user.length; i++) {
    if (user.charCodeAt(i)>127) {
//      alert("Ths username contains invalid characters.");
      return false;
    }
  }
  for (i=0; i<domain.length; i++) {
    if (domain.charCodeAt(i)>127) {
//      alert("Ths domain name contains invalid characters.");
      return false;
    }
  }
  // See if "user" is valid 
  if (user.match(userPat)==null) {
    // user is not valid
//    alert("The username doesn't seem to be valid.");
    return false;
  }
  /* if the e-mail address is at an IP address (as opposed to a symbolic
  host name) make sure the IP address is valid. */
  var IPArray=domain.match(ipDomainPat);
  if (IPArray!=null) {
    // this is an IP address
    for (var i=1;i<=4;i++) {
      if (IPArray[i]>255) {
//        alert("Destination IP address is invalid!");
        return false;
      }
    }
    return true;
  }
  // Domain is symbolic name.  Check if it's valid.
  var atomPat=new RegExp("^" + atom + "$");
  var domArr=domain.split(".");
  var len=domArr.length;
  for (i=0;i<len;i++) {
    if (domArr[i].search(atomPat)==-1) {
//      alert("The domain name does not seem to be valid.");
      return false;
    }
  }
  /* domain name seems valid, but now make sure that it ends in a
  known top-level domain (like com, edu, gov) or a two-letter word,
  representing country (uk, nl), and that there's a hostname preceding 
  the domain or country. */
  if (checkTLD && domArr[domArr.length-1].length!=2 && 
    domArr[domArr.length-1].search(knownDomsPat)==-1) {
//    alert("The address must end in a well-known domain or two letter " + "country.");
    return false;
  }
  // Make sure there's a host name preceding the domain.
  if (len<2) {
//    alert("This address is missing a hostname!");
    return false;
  }
  // If we've gotten this far, everything's valid!
  return true;
}

function wrtEml(fncAcct,fncDM,fncTxt) {
   if (fncAcct != "" && fncDM != "" && fncTxt != "") {
      fncMsg = "<a href=\"mailto:";
      fncMsg = fncMsg + fncAcct +"@" + fncDM + "\">";
	  fncMsg = fncMsg + fncTxt +  "</a>";
      document.write(fncMsg);
   }
}

function showTooltip(fncDiv) {
	if (document.getElementById) {
		tgt = document.getElementById("target");
		srcDiv = document.getElementById(fncDiv);
		tgt.innerHTML = srcDiv.innerHTML;
	}
}

function hideItem() {
	if (document.getElementById) {
		tgt = document.getElementById("target");
		tgt.innerHTML = "";
	}
}

function setFSAView(fncID) {
	if (fncID != "" && ! isNaN(fncID)) {
		form = document.forms["FSAView"];
		form.id.value = fncID;
		form.submit();
	}
}

function resWin(fncW,fncH) {
 self.resizeTo(fncW,fncH);
}

function popFSAEmail(winNM,winWid,winHgt,winID) {
   pgName = winNM+"?id="+winID;
   newWindow=window.open(pgName,"newWindow","height="+winHgt+",width="+winWid+",titlebar=no,toolbar=no,menubar=no,srollbars=no,resizable=no,location=no,directories=no,status=no");
}

// scrollable window class code
var iedom = (document.all || document.getElementById);
function winScroll(iName, defSpd) {
	// iName: instance name (str); defSpd: milliseconds (int) between intervals
	// Constructor: initialize the properties
	this.name = iName;
	this.defSpd = defSpd?defSpd:30;
	this.cElem = iName + "_cont";
	this.sElem = iName + "_scroll";
	this.sHgt = 0;
	this.timer = null;
	// Constructor: initialize the method references for the prototype
	if (typeof(_winsscroll_prototype_called) == 'undefined') {
		_winscroll_prototype_called = true;
		winScroll.prototype.init = init;
		winScroll.prototype.moveUp = moveUp;
		winScroll.prototype.moveDown = moveDown;
		winScroll.prototype.stopScroll = stopScroll;
	}
	// Define Methods
	function init() {
		var iHgt = 0;
		if (iedom) {
			var iElem = document.getElementById(this.sElem);
			if (iElem) {
				iHgt = iElem.scrollHeight;
			}
		}
		this.sHgt = iHgt;
	}
	function moveUp() {
		this.timer = setInterval("scrollDown('" + this.sElem + "')",this.defSpd);
	}
	function moveDown() {
		this.timer = setInterval("scrollUp('" + this.cElem + "','" + this.sElem + "'," + this.sHgt + ")",this.defSpd);
	}
	function stopScroll() {
		clearInterval(this.timer);
	}
}
function scrollUp(tgtCont,tgtScroll,tgtHgt) {
	if (iedom) {
		var upCont = document.getElementById(tgtCont);
		var upElem = document.getElementById(tgtScroll);
		var upVal = tgtHgt - upCont.offsetHeight;
		if (parseInt(upElem.offsetTop) > (-1 * upVal)) {
			upElem.style.top=parseInt(upElem.offsetTop)-5+"px";
		}
	}
}
function scrollDown(tgtScroll) {
	if (iedom) {
		var dwnElem = document.getElementById(tgtScroll);
		if (parseInt(dwnElem.offsetTop) < 0 ) {
			dwnElem.style.top=parseInt(dwnElem.offsetTop)+5+"px";
		}
	}
}
// end scrollable window class

// Start Macromedia Code

function MM_displayStatusMsg(msgStr)  { //v3.0
	status=msgStr; document.MM_returnValue = true;
}

function MM_findObj(n, d) { //v4.01
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && d.getElementById) x=d.getElementById(n); return x;
}
function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function mmLoadMenus() {
  if (window.mm_menu_0629160415_0) return;
   //Start National
    window.mm_menu_0629160415_0_1 = new Menu("National&nbsp;Staff",191,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_0_1.addMenuItem("Chief&nbsp;Executive&nbsp;Officer","window.open('http://www.ato.org/nat/staff_ceo.shtml', '_self');");
    mm_menu_0629160415_0_1.addMenuItem("Alumni&nbsp;Services","window.open('http://www.ato.org/nat/staff_alumniserv.shtml', '_self');");
    mm_menu_0629160415_0_1.addMenuItem("Chapter&nbsp;Services","window.open('http://www.ato.org/nat/staff_memserv.shtml', '_self');");
    mm_menu_0629160415_0_1.addMenuItem("Expansion","window.open('http://www.ato.org/nat/staff_expansion.shtml', '_self');");
    mm_menu_0629160415_0_1.addMenuItem("Marketing&nbsp;&amp;&nbsp;Communication","window.open('http://www.ato.org/nat/staff_communication.shtml', '_self');");
    mm_menu_0629160415_0_1.addMenuItem("Membership&nbsp;Records","window.open('http://www.ato.org/nat/staff_memrec.shtml', '_self');");
    mm_menu_0629160415_0_1.addMenuItem("Conferences&nbsp;&amp;&nbsp;Events","window.open('http://www.ato.org/nat/staff_confevents.shtml', '_self');");
  //  mm_menu_0629160415_0_1.addMenuItem("Operations","window.open('http://www.ato.org/nat/staff_operations.shtml', '_self');");
    mm_menu_0629160415_0_1.addMenuItem("Quick&nbsp;Staff&nbsp;Directory","window.open('http://www.ato.org/nat/staff_quickdir.shtml', '_self');");
     mm_menu_0629160415_0_1.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_0_1.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_0_1.fontWeight="bold";
     mm_menu_0629160415_0_1.hideOnMouseOut=true;
     mm_menu_0629160415_0_1.bgColor='#45cc00';
    window.mm_menu_0629160415_0_2 = new Menu("Awards",181,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_0_2.addMenuItem("True&nbsp;Merit","window.open('http://www.ato.org/nat/awd_truemerit.shtml', '_self');");
    mm_menu_0629160415_0_2.addMenuItem("Thomas&nbsp;Arkle&nbsp;Clark","window.open('http://www.ato.org/nat/awd_tac.shtml', '_self');");
    mm_menu_0629160415_0_2.addMenuItem("Chapter&nbsp;Scholarship","window.open('http://www.ato.org/nat/awd_scholarship.shtml', '_self');");
    mm_menu_0629160415_0_2.addMenuItem("Chapter&nbsp;Philanthropic","window.open('http://www.ato.org/nat/awd_philanthropic.shtml', '_self');");
    mm_menu_0629160415_0_2.addMenuItem("Chapter&nbsp;Communication","window.open('http://www.ato.org/nat/awd_communication.shtml', '_self');");
    mm_menu_0629160415_0_2.addMenuItem("Chapter&nbsp;Recruitment","window.open('http://www.ato.org/nat/awd_recruitment.shtml', '_self');");
    mm_menu_0629160415_0_2.addMenuItem("Board&nbsp;of&nbsp;Trustees","window.open('http://www.ato.org/nat/awd_bot.shtml', '_self');");
     mm_menu_0629160415_0_2.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_0_2.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_0_2.fontWeight="bold";
     mm_menu_0629160415_0_2.hideOnMouseOut=true;
     mm_menu_0629160415_0_2.bgColor='#45cc00';
    window.mm_menu_0629160415_0_3 = new Menu("History",241,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_0_3.addMenuItem("The&nbsp;ATO&nbsp;Creed","window.open('http://www.ato.org/nat/hist_creed.shtml', '_self');");
    mm_menu_0629160415_0_3.addMenuItem("Tau&nbsp;Facts&nbsp;&amp;&nbsp;Firsts","window.open('http://www.ato.org/nat/hist_factsfirsts.shtml', '_self');");
    mm_menu_0629160415_0_3.addMenuItem("The&nbsp;Official&nbsp;Story&nbsp;of&nbsp;Our&nbsp;Founding","window.open('http://www.ato.org/nat/hist_founding.shtml', '_self');");
    mm_menu_0629160415_0_3.addMenuItem("The&nbsp;ATO&nbsp;Story","window.open('http://www.ato.org/nat/hist_story.shtml', '_self');");
     mm_menu_0629160415_0_3.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_0_3.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_0_3.fontWeight="bold";
     mm_menu_0629160415_0_3.hideOnMouseOut=true;
     mm_menu_0629160415_0_3.bgColor='#45cc00';
    window.mm_menu_0629160415_0_4 = new Menu("Publications",171,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_0_4.addMenuItem("ATO&nbsp;Palm","window.open('https://secure.ato.org/ato/nat/pubs_palm.asp', '_self');");
    mm_menu_0629160415_0_4.addMenuItem("ATO&nbsp;Leader","location='http://www.ato.org/nat/pubs_leader.asp'");
    mm_menu_0629160415_0_4.addMenuItem("Trustee&nbsp;Report","location='http://www.ato.org/nat/pubs_trustee.asp'");
    mm_menu_0629160415_0_4.addMenuItem("National&nbsp;Directory","location='http://www.ato.org/nat/nationaldir.asp'");
    mm_menu_0629160415_0_4.addMenuItem("Feature&nbsp;Story&nbsp;Archive","location='http://www.ato.org/nat/pubs_fsarchive.asp'");
    mm_menu_0629160415_0_4.addMenuItem("iTau","location='http://www.ato.org/iTau/default.shtml'");
     mm_menu_0629160415_0_4.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_0_4.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_0_4.fontWeight="bold";
     mm_menu_0629160415_0_4.hideOnMouseOut=true;
     mm_menu_0629160415_0_4.bgColor='#45cc00';
  window.mm_menu_0629160415_0 = new Menu("root",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
  mm_menu_0629160415_0.addMenuItem("Welcome","window.open('http://www.ato.org/nat/welcome.shtml', '_self');");
  mm_menu_0629160415_0.addMenuItem("National&nbsp;Officers&nbsp;&amp;&nbsp;Directors","window.open('http://www.ato.org/nat/bod.shtml', '_self');");
  mm_menu_0629160415_0.addMenuItem(mm_menu_0629160415_0_1,"window.open('http://www.ato.org/national.shtml', '_self');");
  mm_menu_0629160415_0.addMenuItem(mm_menu_0629160415_0_2,"window.open('http://www.ato.org/national.shtml', '_self');");
  mm_menu_0629160415_0.addMenuItem(mm_menu_0629160415_0_3,"window.open('http://www.ato.org/national.shtml', '_self');");
  mm_menu_0629160415_0.addMenuItem(mm_menu_0629160415_0_4,"window.open('http://www.ato.org/national.shtml', '_self');");
  mm_menu_0629160415_0.addMenuItem("Licensed&nbsp;Vendors","window.open('http://www.ato.org/nat/vendors.shtml', '_self');");
  mm_menu_0629160415_0.addMenuItem("Request&nbsp;More&nbsp;Information","window.open('http://www.ato.org/nat/information.shtml', '_self');");
   mm_menu_0629160415_0.bgImageUp="../imgs/nav/nat_261x18_up.gif";
   mm_menu_0629160415_0.bgImageOver="../imgs/nav/nat_261x18_over.gif";
   mm_menu_0629160415_0.fontWeight="bold";
   mm_menu_0629160415_0.hideOnMouseOut=true;
   mm_menu_0629160415_0.childMenuIcon="../imgs/nav/arrows.gif";
   mm_menu_0629160415_0.bgColor='#45cc00';
   //End National
   //Start Undergrad
    window.mm_menu_0629160415_1_1 = new Menu("Chapters",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_1_1.addMenuItem("Active&nbsp;Chapters&nbsp;by&nbsp;State","window.open('http://www.ato.org/ug/chaps_bystate.shtml', '_self');");
    mm_menu_0629160415_1_1.addMenuItem("All&nbsp;Chapters&nbsp;Chronologically","window.open('http://www.ato.org/ug/chaps_chronologically.shtml', '_self');");
    mm_menu_0629160415_1_1.addMenuItem("Success&nbsp;in&nbsp;Review","window.open('http://www.atoroadshow.org/ars/successinreview.asp', '_blank');");
     mm_menu_0629160415_1_1.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_1_1.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_1_1.fontWeight="bold";
     mm_menu_0629160415_1_1.hideOnMouseOut=true;
     mm_menu_0629160415_1_1.bgColor='#45cc00';
    window.mm_menu_0629160415_1_2 = new Menu("Leadership&nbsp;Development",231,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_1_2.addMenuItem("ATO&nbsp;Congress&nbsp;Resources","window.open('http://www.ato.org/ug/lship_congressres.shtml', '_self');");
    mm_menu_0629160415_1_2.addMenuItem("Regional&nbsp;Leadership&nbsp;Conferences","window.open('http://www.ato.org/ug/lship_rlc.shtml', '_self');");
    mm_menu_0629160415_1_2.addMenuItem("Altitude","window.open('http://www.ato.org/ug/lship_altitude.shtml', '_self');");
    mm_menu_0629160415_1_2.addMenuItem("LeaderShape","window.open('http://www.ato.org/ug/lship_leadershape.shtml', '_self');");
     mm_menu_0629160415_1_2.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_1_2.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_1_2.fontWeight="bold";
     mm_menu_0629160415_1_2.hideOnMouseOut=true;
     mm_menu_0629160415_1_2.bgColor='#45cc00';
    window.mm_menu_0629160415_1_3 = new Menu("Reporting",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_1_3.addMenuItem("ATO&nbsp;eWeb","window.open('http://www.ato.org/eweb/redir.asp?u=https://www.atoonline.org/eweb', '_self');");
    mm_menu_0629160415_1_3.addMenuItem("Let&nbsp;Us&nbsp;Know","window.open('http://www.atoroadshow.org/ars/reportsuccess.asp', '_blank');");
    mm_menu_0629160415_1_3.addMenuItem("Tau&nbsp;News","window.open('http://www.ato.org/ug/rep_taunews.shtml', '_self');");
    mm_menu_0629160415_1_3.addMenuItem("Annual&nbsp;Report&nbsp;&amp;&nbsp;Awards&nbsp;App","window.open('http://www.ato.org/ug/rep_annualreport.shtml', '_self');");
    mm_menu_0629160415_1_3.addMenuItem("Update&nbsp;Your&nbsp;Address","window.open('http://www.ato.org/eweb/redir.asp?u=https://www.atoonline.org/eweb', '_self');");
     mm_menu_0629160415_1_3.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_1_3.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_1_3.fontWeight="bold";
     mm_menu_0629160415_1_3.hideOnMouseOut=true;
     mm_menu_0629160415_1_3.bgColor='#45cc00';
		window.mm_menu_0629160415_1_4_0 = new Menu("Risk&nbsp;Management",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_1_4_0.addMenuItem("Risk&nbsp;Management&nbsp;Resources","location='http://www.ato.org/ug/riskmanagement.asp'");
		mm_menu_0629160415_1_4_0.addMenuItem("Claim&nbsp;Resolution","location='http://www.ato.org/ug/claimresolution.asp'");
    mm_menu_0629160415_1_4_0.bgImageUp="../imgs/nav/nat_261x18_up.gif";
    mm_menu_0629160415_1_4_0.bgImageOver="../imgs/nav/nat_261x18_over.gif";
    mm_menu_0629160415_1_4_0.fontWeight="bold";
    mm_menu_0629160415_1_4_0.hideOnMouseOut=true;
    mm_menu_0629160415_1_4_0.bgColor='#45cc00';
    window.mm_menu_0629160415_1_4 = new Menu("Officer&nbsp;Resources",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_1_4.addMenuItem("Positive&nbsp;Experience&nbsp;Guide","location='http://www.ato.org/ug/res_posexperience.shtml'");
		mm_menu_0629160415_1_4.addMenuItem(mm_menu_0629160415_1_4_0,"window.open('javascript:void(0)', '_self');");
    mm_menu_0629160415_1_4.addMenuItem("Goal&nbsp;Setting&nbsp;101","location='http://www.ato.org/ug/res_goalsetting.shtml'");
    mm_menu_0629160415_1_4.addMenuItem("ATO&nbsp;Logos&nbsp;and&nbsp;Graphics","location='http://www.ato.org/ug/res_logos.asp'");
    mm_menu_0629160415_1_4.addMenuItem("Distinct&nbsp;Advantage&nbsp;Templates","location='http://www.ato.org/ug/res_distadvantage.shtml'");
	mm_menu_0629160415_1_4.addMenuItem("ATO&nbsp;Songs&nbsp;&amp;&nbsp;Cheers","location='http://www.ato.org/ug/res_songs.shtml'");
	mm_menu_0629160415_1_4.addMenuItem("ATO&nbsp;Online&nbsp;Resource&nbsp;Catalog","window.open('https://secure.ato.org/ato/catalog/catalog.shtml', '_self');");	
     mm_menu_0629160415_1_4.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_1_4.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_1_4.fontWeight="bold";
     mm_menu_0629160415_1_4.hideOnMouseOut=true;
	   mm_menu_0629160415_1_4.childMenuIcon="../imgs/nav/arrows.gif";		 
     mm_menu_0629160415_1_4.bgColor='#45cc00';
    window.mm_menu_0629160415_1_5 = new Menu("Fees,&nbsp;Dues&nbsp;&&nbsp;Insurance",241,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_1_5.addMenuItem("General&nbsp;Information","window.open('http://www.ato.org/ug/fdi_general.shtml', '_self');");
    mm_menu_0629160415_1_5.addMenuItem("Pay&nbsp;Your&nbsp;Dues&nbsp;&amp;&nbsp;Insurance&nbsp;Online","location='http://www.greekbill.com/'");
    mm_menu_0629160415_1_5.addMenuItem("Debt&nbsp;Collection&nbsp;Services","location='http://www.greekbill.com/'");
    mm_menu_0629160415_1_5.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_1_5.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_1_5.fontWeight="bold";
     mm_menu_0629160415_1_5.hideOnMouseOut=true;
     mm_menu_0629160415_1_5.bgColor='#45cc00';
  window.mm_menu_0629160415_1 = new Menu("root",211,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
  mm_menu_0629160415_1.addMenuItem(mm_menu_0629160415_1_1,"window.open('http://www.ato.org/undergrad.shtml', '_self');");
  mm_menu_0629160415_1.addMenuItem(mm_menu_0629160415_1_2,"window.open('http://www.ato.org/undergrad.shtml', '_self');");
  mm_menu_0629160415_1.addMenuItem(mm_menu_0629160415_1_3,"window.open('http://www.ato.org/undergrad.shtml', '_self');");
  mm_menu_0629160415_1.addMenuItem(mm_menu_0629160415_1_4,"window.open('http://www.ato.org/undergrad.shtml', '_self');");
  mm_menu_0629160415_1.addMenuItem(mm_menu_0629160415_1_5,"window.open('http://www.ato.org/undergrad.shtml', '_self');");
  mm_menu_0629160415_1.addMenuItem("Professional&nbsp;Advantage","window.open('http://www.ato.org/ug/professionaladv.shtml', '_self');");
  mm_menu_0629160415_1.addMenuItem("Career&nbsp;Resources","window.open('http://www.ato.org/ug/career_resources.shtml', '_self');");
  mm_menu_0629160415_1.addMenuItem("Risk&nbsp;Management","window.open('http://www.ato.org/ug/riskmanagement.asp', '_self');");
  mm_menu_0629160415_1.addMenuItem("ATO&nbsp;Prayer&nbsp;Web","window.open('http://www.ato.org/ug/prayerweb.asp', '_self');");
  mm_menu_0629160415_1.addMenuItem("ATO&nbsp;Roadshow","window.open('http://www.atoroadshow.org/', '_blank');");
   mm_menu_0629160415_1.bgImageUp="../imgs/nav/nat_261x18_up.gif";
   mm_menu_0629160415_1.bgImageOver="../imgs/nav/nat_261x18_over.gif";
   mm_menu_0629160415_1.fontWeight="bold";
   mm_menu_0629160415_1.hideOnMouseOut=true;
   mm_menu_0629160415_1.childMenuIcon="../imgs/nav/arrows.gif";
   mm_menu_0629160415_1.bgColor='#45cc00';
   //End Undergrad
   //Start Alumni
    window.mm_menu_0629160415_2_1 = new Menu("General Information",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_2_1.addMenuItem("Alumni/Volunteer&nbsp;Information","window.open('http://www.ato.org/av/gi_avinformation.shtml', '_self');");
    mm_menu_0629160415_2_1.addMenuItem("Famous Alumni","window.open('http://www.ato.org/av/gi_famous.shtml', '_self');");
     mm_menu_0629160415_2_1.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_2_1.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_2_1.fontWeight="bold";
     mm_menu_0629160415_2_1.hideOnMouseOut=true;
     mm_menu_0629160415_2_1.bgColor='#45cc00';
    window.mm_menu_0629160415_2_2 = new Menu("Life&nbsp;Loyal&nbsp;Tau",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_2_2.addMenuItem("Loyal&nbsp;Tau&nbsp;Benefits&nbsp;&amp;&nbsp;Services","window.open('http://www.ato.org/av/llt_benefits.shtml', '_self');");
    mm_menu_0629160415_2_2.addMenuItem("Become&nbsp;a&nbsp;Life&nbsp;Loyal&nbsp;Tau","window.open('http://www.ato.org/av/llt_become.shtml', '_self');");
    mm_menu_0629160415_2_2.addMenuItem("Online&nbsp;Registration","window.open('https://secure.ato.org/ato/av/llt_registration.shtml', '_self');");
    mm_menu_0629160415_2_2.addMenuItem("Recruiter&nbsp;Program","window.open('http://www.ato.org/av/llt_recruiter.shtml', '_self');");
     mm_menu_0629160415_2_2.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_2_2.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_2_2.fontWeight="bold";
     mm_menu_0629160415_2_2.hideOnMouseOut=true;
     mm_menu_0629160415_2_2.bgColor='#45cc00';
    window.mm_menu_0629160415_2_3 = new Menu("Volunteer&nbsp;Opportunities",201,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_2_3.addMenuItem("Board&nbsp;of&nbsp;Trustees","window.open('http://www.ato.org/av/vo_bot.shtml', '_self');");
    mm_menu_0629160415_2_3.addMenuItem("House&nbsp;Corporations","window.open('http://www.ato.org/av/vo_housecorps.shtml', '_self');");
    mm_menu_0629160415_2_3.addMenuItem("Alumni&nbsp;Associations","window.open('http://www.ato.org/av/grps_associations.shtml', '_self');");
    mm_menu_0629160415_2_3.addMenuItem("ATO&nbsp;Volunteer&nbsp;Interest&nbsp;Form","window.open('http://www.ato.org/av/vo_interest.shtml', '_self');");
     mm_menu_0629160415_2_3.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_2_3.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_2_3.fontWeight="bold";
     mm_menu_0629160415_2_3.hideOnMouseOut=true;
     mm_menu_0629160415_2_3.bgColor='#45cc00';
    window.mm_menu_0629160415_2_4 = new Menu("Programs&nbsp;&amp;&nbsp;Services",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_2_4.addMenuItem("Alumni&nbsp;Travel&nbsp;Tours","window.open('http://www.ato.org/av/ps_tours.shtml', '_self');");
    <!--mm_menu_0629160415_2_4.addMenuItem("Career&nbsp;Placement","location='http://www.ato.org/nat/ato_monstertrak.shtml'");-->
    mm_menu_0629160415_2_4.addMenuItem("Career&nbsp;Resources","location='http://www.ato.org/ug/career_resources.shtml'");
    mm_menu_0629160415_2_4.addMenuItem("Recruitment&nbsp;Recommendation","location='http://www.joinato.org/joinATO/ps_recommendation.shtml'");
     mm_menu_0629160415_2_4.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_2_4.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_2_4.fontWeight="bold";
     mm_menu_0629160415_2_4.hideOnMouseOut=true;
     mm_menu_0629160415_2_4.bgColor='#45cc00';
    window.mm_menu_0629160415_2_5 = new Menu("The&nbsp;ATO&nbsp;Palm",161,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_2_5.addMenuItem("ATO&nbsp;Palm","window.open('https://secure.ato.org/ato/nat/pubs_palm.asp', '_self');");
    mm_menu_0629160415_2_5.addMenuItem("Tau&nbsp;News","location='http://www.ato.org/ug/rep_taunews.shtml'");
     mm_menu_0629160415_2_5.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_2_5.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_2_5.fontWeight="bold";
     mm_menu_0629160415_2_5.hideOnMouseOut=true;
     mm_menu_0629160415_2_5.bgColor='#45cc00';
    window.mm_menu_0629160415_2_6 = new Menu("BOT/Alumni&nbsp;Assoc&nbsp;Resources",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_2_6.addMenuItem("Alumni&nbsp;Association&nbsp;Handbook","location='http://www.ato.org/av/baa_handbook.shtml'");
    mm_menu_0629160415_2_6.addMenuItem("Additional&nbsp;Resources","location='http://www.ato.org/av/baa_additional.shtml'");
     mm_menu_0629160415_2_6.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_2_6.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_2_6.fontWeight="bold";
     mm_menu_0629160415_2_6.hideOnMouseOut=true;
     mm_menu_0629160415_2_6.bgColor='#45cc00';
  window.mm_menu_0629160415_2 = new Menu("root",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
  mm_menu_0629160415_2.addMenuItem(mm_menu_0629160415_2_1,"window.open('http://www.ato.org/alumvol.shtml', '_self');");
  mm_menu_0629160415_2.addMenuItem(mm_menu_0629160415_2_2,"window.open('http://www.ato.org/alumvol.shtml', '_self');");
  mm_menu_0629160415_2.addMenuItem(mm_menu_0629160415_2_3,"window.open('http://www.ato.org/alumvol.shtml', '_self');");
  mm_menu_0629160415_2.addMenuItem(mm_menu_0629160415_2_4,"window.open('http://www.ato.org/alumvol.shtml', '_self');");
  mm_menu_0629160415_2.addMenuItem(mm_menu_0629160415_2_5,"window.open('http://www.ato.org/alumvol.shtml', '_self');");
  mm_menu_0629160415_2.addMenuItem(mm_menu_0629160415_2_6,"window.open('http://www.ato.org/alumvol.shtml', '_self');");
  mm_menu_0629160415_2.addMenuItem("Alumni&nbsp;News&nbsp;&amp;&nbsp;Events","window.open('http://www.ato.org/av/newsevents.shtml', '_self');");
  mm_menu_0629160415_2.addMenuItem("ATO&nbsp;Prayer&nbsp;Web","window.open('http://www.ato.org/ug/prayerweb.asp', '_self');");
   mm_menu_0629160415_2.addMenuItem("Update&nbsp;Your&nbsp;Address","window.open('http://www.ato.org/eweb/redir.asp?u=https://www.atoonline.org/eweb', '_self');");
mm_menu_0629160415_2.addMenuItem("Update&nbsp;Other&nbsp;Address","window.open('http://www.ato.org/av/rep_upmultaddress.shtml', '_self');");
   mm_menu_0629160415_2.bgImageUp="../imgs/nav/nat_261x18_up.gif";
   mm_menu_0629160415_2.bgImageOver="../imgs/nav/nat_261x18_over.gif";
   mm_menu_0629160415_2.fontWeight="bold";
   mm_menu_0629160415_2.hideOnMouseOut=true;
   mm_menu_0629160415_2.childMenuIcon="../imgs/nav/arrows.gif";
   mm_menu_0629160415_2.bgColor='#45cc00';
   //End Alumni
   //Start Expansion
    window.mm_menu_0629160415_3_1 = new Menu("General Information",201,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_3_1.addMenuItem("Alpha&nbsp;Tau&nbsp;Omega&nbsp;Overview","window.open('http://www.ato.org/ex/gi_overview.shtml', '_self');");
    mm_menu_0629160415_3_1.addMenuItem("Tau&nbsp;Facts&nbsp;&amp;&nbsp;Firsts","window.open('http://www.ato.org/nat/hist_factsfirsts.shtml', '_self');");
     mm_menu_0629160415_3_1.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_3_1.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_3_1.fontWeight="bold";
     mm_menu_0629160415_3_1.hideOnMouseOut=true;
     mm_menu_0629160415_3_1.bgColor='#45cc00';
    window.mm_menu_0629160415_3_2 = new Menu("Starting&nbsp;a&nbsp;New&nbsp;Chapter",201,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_3_2.addMenuItem("Why&nbsp;Alpha&nbsp;Tau&nbsp;Omega","window.open('http://www.ato.org/ex/nc_whyato.shtml', '_self');");
    mm_menu_0629160415_3_2.addMenuItem("Determining&nbsp;Expansion&nbsp;Sites","window.open('http://www.ato.org/ex/nc_determiningsites.shtml', '_self');");
    mm_menu_0629160415_3_2.addMenuItem("Expansion&nbsp;Phases","window.open('http://www.ato.org/ex/nc_phases.shtml', '_self');");
    mm_menu_0629160415_3_2.addMenuItem("Expansion&nbsp;Interest&nbsp;Form","window.open('http://www.ato.org/ex/nc_interest.shtml', '_self');");
     mm_menu_0629160415_3_2.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_3_2.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_3_2.fontWeight="bold";
     mm_menu_0629160415_3_2.hideOnMouseOut=true;
     mm_menu_0629160415_3_2.bgColor='#45cc00';
    window.mm_menu_0629160415_3_3 = new Menu("Expansion&nbsp;Resources",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_3_3.addMenuItem("Reporting&nbsp;Membership&nbsp;Changes","window.open('http://www.ato.org/ex/res_reportingmembers.shtml', '_self');");
    mm_menu_0629160415_3_3.addMenuItem("The&nbsp;Form","window.open('https://secure.ato.org/ato/ex/rep_colonyform.asp', '_self');");
//    mm_menu_0629160415_3_3.addMenuItem("Timeline&nbsp;&amp;&nbsp;Checklist","window.open('http://www.ato.org/ex/res_timeline.shtml', '_self');");
    mm_menu_0629160415_3_3.addMenuItem("Colony&nbsp;Petition","window.open('http://www.ato.org/ex/res_colonypetition.shtml', '_self');");
    mm_menu_0629160415_3_3.addMenuItem("Sample&nbsp;Bylaws&nbsp;&amp;&nbsp;Minutes","window.open('http://www.ato.org/ex/res_reportingmembers.shtml#BYLAWS', '_self');");
    mm_menu_0629160415_3_3.addMenuItem("Cornerstone&nbsp;Manual","window.open('http://www.ato.org/ug/res_cornerstone.asp', '_self');");	
	 mm_menu_0629160415_3_3.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_3_3.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_3_3.fontWeight="bold";
     mm_menu_0629160415_3_3.hideOnMouseOut=true;
     mm_menu_0629160415_3_3.bgColor='#45cc00';
  window.mm_menu_0629160415_3 = new Menu("root",221,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
  mm_menu_0629160415_3.addMenuItem(mm_menu_0629160415_3_1,"window.open('http://www.ato.org/expansion.shtml', '_self');");
  mm_menu_0629160415_3.addMenuItem(mm_menu_0629160415_3_2,"window.open('http://www.ato.org/expansion.shtml', '_self');");
  mm_menu_0629160415_3.addMenuItem(mm_menu_0629160415_3_3,"window.open('http://www.ato.org/expansion.shtml', '_self');");
  mm_menu_0629160415_3.addMenuItem("Current&nbsp;Expansion&nbsp;Sites","window.open('http://www.ato.org/ex/current.shtml', '_self');");
  mm_menu_0629160415_3.addMenuItem("Recruitment&nbsp;Recommendation","window.open('http://www.joinato.org/joinATO/ps_recommendation.shtml', '_self');");
  mm_menu_0629160415_3.addMenuItem("Upcoming&nbsp;Charterings","window.open('http://www.ato.org/chartering.shtml', '_self');");
   mm_menu_0629160415_3.bgImageUp="../imgs/nav/nat_261x18_up.gif";
   mm_menu_0629160415_3.bgImageOver="../imgs/nav/nat_261x18_over.gif";
   mm_menu_0629160415_3.fontWeight="bold";
   mm_menu_0629160415_3.hideOnMouseOut=true;
   mm_menu_0629160415_3.childMenuIcon="../imgs/nav/arrows.gif";
   mm_menu_0629160415_3.bgColor='#45cc00';
   //End Expansion
   //Start Foundation
    window.mm_menu_0629160415_4_1 = new Menu("About&nbsp;the&nbsp;Foundation",181,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
		mm_menu_0629160415_4_1.addMenuItem("Reasons&nbsp;to&nbsp;Give","window.open('http://www.ato.org/fnd/reasonstogive.shtml', '_self');");
		mm_menu_0629160415_4_1.addMenuItem("Ways&nbsp;to&nbsp;Give","window.open('http://www.ato.org/fnd/waystogive.shtml', '_self');");		
    mm_menu_0629160415_4_1.addMenuItem("History&nbsp;&amp;&nbsp;Purpose","window.open('http://www.ato.org/fnd/abt_history.shtml', '_self');");
    mm_menu_0629160415_4_1.addMenuItem("Board&nbsp;of&nbsp;Governors","window.open('http://www.ato.org/fnd/abt_bog.shtml', '_self');");
    mm_menu_0629160415_4_1.addMenuItem("Foundation&nbsp;Staff","window.open('http://www.ato.org/fnd/abt_staff.shtml', '_self');");
    mm_menu_0629160415_4_1.addMenuItem("Letters&nbsp;from&nbsp;the&nbsp;President","window.open('http://www.ato.org/fnd/abt_letterpres.shtml', '_self');");
     mm_menu_0629160415_4_1.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_4_1.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_4_1.fontWeight="bold";
     mm_menu_0629160415_4_1.hideOnMouseOut=true;
     mm_menu_0629160415_4_1.bgColor='#45cc00';
    window.mm_menu_0629160415_4_2 = new Menu("Contributor&nbsp;Recognition",211,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_4_2.addMenuItem("Loyalty&nbsp;Fund&nbsp;Contributors","window.open('http://www.ato.org/fnd/rec_loyaltyfund.shtml', '_self');");
    mm_menu_0629160415_4_2.addMenuItem("New&nbsp;Millenium&nbsp;Honor&nbsp;Society","window.open('http://www.ato.org/fnd/rec_newmillenium.asp', '_self');");		
    mm_menu_0629160415_4_2.addMenuItem("Erskine&nbsp;Mayo&nbsp;Ross&nbsp;Club","window.open('http://www.ato.org/fnd/rec_givingclub.asp', '_self');");
     mm_menu_0629160415_4_2.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_4_2.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_4_2.fontWeight="bold";
     mm_menu_0629160415_4_2.hideOnMouseOut=true;
     mm_menu_0629160415_4_2.bgColor='#45cc00';
    window.mm_menu_0629160415_4_3 = new Menu("Education&nbsp;Grant&nbsp;Fund",131,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_4_3.addMenuItem("CEFG&nbsp;Information","window.open('http://www.ato.org/fnd/cefg_information.shtml', '_self');");
    mm_menu_0629160415_4_3.addMenuItem("CEFG&nbsp;Application","window.open('http://www.ato.org/fnd/resources/CEFG_APP.pdf', '_blank');");
	 mm_menu_0629160415_4_3.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_4_3.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_4_3.fontWeight="bold";
     mm_menu_0629160415_4_3.hideOnMouseOut=true;
     mm_menu_0629160415_4_3.bgColor='#45cc00';
    window.mm_menu_0629160415_4_4 = new Menu("Foundation&nbsp;Scholarships",211,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_4_4.addMenuItem("Scholarship&nbsp;Information","window.open('http://www.ato.org/fnd/schol_information.shtml', '_self');");
    mm_menu_0629160415_4_4.addMenuItem("Richard&nbsp;A.&nbsp;Ports&nbsp;Application","window.open('http://www.ato.org/fnd/resources/PORTS_APP1.pdf', '_blank');");
    mm_menu_0629160415_4_4.addMenuItem("Steven&nbsp;Haisley&nbsp;Memorial","window.open('http://www.ato.org/fnd/schol_steven_haisley_application.shtml', '_self');");
		mm_menu_0629160415_4_4.addMenuItem("Scholarships&nbsp;Application","window.open('http://www.ato.org/fnd/schol_application.shtml', '_self');");
    mm_menu_0629160415_4_4.addMenuItem("Jeffrey&nbsp;Hamilton&nbsp;Memorial","window.open('http://www.ato.org/fnd/fnd/schol_jeffrey_hamilton_application.shtml', '_self');");
    mm_menu_0629160415_4_4.addMenuItem("James&nbsp;Nelson&nbsp;Epsilon&nbsp;Eta","window.open('http://www.ato.org/fnd/schol_james_nelson_application.shtml', '_self');");

mm_menu_0629160415_4_4.addMenuItem("Gamma&nbsp;Zeta&nbsp;Scholarships","location='http://www.ato.org/fnd/schol_applicationgz.shtml'");	 
mm_menu_0629160415_4_4.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_4_4.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_4_4.fontWeight="bold";
     mm_menu_0629160415_4_4.hideOnMouseOut=true;
     mm_menu_0629160415_4_4.bgColor='#45cc00';
    window.mm_menu_0629160415_4_5 = new Menu("Foundation&nbsp;Awards",152,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
    mm_menu_0629160415_4_5.addMenuItem("Winners&nbsp;2006/2007","window.open('http://www.ato.org/fnd/awd_latest.shtml', '_self');");
    mm_menu_0629160415_4_5.addMenuItem("Winners&nbsp;2005/2006","window.open('http://www.ato.org/fnd/awd_2006.shtml', '_self');");
    mm_menu_0629160415_4_5.addMenuItem("Winners&nbsp;2004/2005","window.open('http://www.ato.org/fnd/awd_2005.shtml', '_self');");		
    mm_menu_0629160415_4_5.addMenuItem("Winners&nbsp;2003/2004","window.open('http://www.ato.org/fnd/awd_20032004.shtml', '_self');");
    mm_menu_0629160415_4_5.addMenuItem("Winners&nbsp;2002/2003","window.open('http://www.ato.org/fnd/awd_20022003.shtml', '_self');");
	 mm_menu_0629160415_4_5.bgImageUp="../imgs/nav/nat_261x18_up.gif";
     mm_menu_0629160415_4_5.bgImageOver="../imgs/nav/nat_261x18_over.gif";
     mm_menu_0629160415_4_5.fontWeight="bold";
     mm_menu_0629160415_4_5.hideOnMouseOut=true;
     mm_menu_0629160415_4_5.bgColor='#45cc00';
  window.mm_menu_0629160415_4 = new Menu("root",181,18,"Verdana, Arial, Helvetica, sans-serif",12,"#ffffff","#ffffff","#3300cc","#45cc00","left","middle",3,0,500,-5,12,true,true,true,0,true,true);
  mm_menu_0629160415_4.addMenuItem(mm_menu_0629160415_4_1,"window.open('http://www.ato.org/foundation.shtml', '_self');");
  mm_menu_0629160415_4.addMenuItem(mm_menu_0629160415_4_2,"window.open('http://www.ato.org/foundation.shtml', '_self');");
  mm_menu_0629160415_4.addMenuItem(mm_menu_0629160415_4_3,"window.open('http://www.ato.org/foundation.shtml', '_self');");
  mm_menu_0629160415_4.addMenuItem(mm_menu_0629160415_4_4,"window.open('http://www.ato.org/foundation.shtml', '_self');");
  mm_menu_0629160415_4.addMenuItem(mm_menu_0629160415_4_5,"window.open('http://www.ato.org/foundation.shtml', '_self');");
//  mm_menu_0629160415_4.addMenuItem("Scholarships&nbsp;&amp;&nbsp;Awards","window.open('http://www.ato.org/fnd/scholarships.shtml', '_self');");
  mm_menu_0629160415_4.addMenuItem("Make&nbsp;a&nbsp;Donation&nbsp;Online","window.open('https://secure.ato.org/ato/fnd/donation.shtml', '_self');");
  mm_menu_0629160415_4.addMenuItem("Update&nbsp;Your&nbsp;Address","window.open('http://www.ato.org/eweb/redir.asp?u=https://www.atoonline.org/eweb', '_self');");  
  mm_menu_0629160415_4.addMenuItem("Request&nbsp;More&nbsp;Information", "window.open('http://www.ato.org/nat/information.shtml', '_self');");
   mm_menu_0629160415_4.bgImageUp="../imgs/nav/nat_261x18_up.gif";
   mm_menu_0629160415_4.bgImageOver="../imgs/nav/nat_261x18_over.gif";
   mm_menu_0629160415_4.fontWeight="bold";
   mm_menu_0629160415_4.hideOnMouseOut=true;
   mm_menu_0629160415_4.childMenuIcon="../imgs/nav/arrows.gif";
   mm_menu_0629160415_4.bgColor='#45cc00';
   //End Founcation
  mm_menu_0629160415_4.writeMenus();
} // mmLoadMenus()

/**
 * mm_menu 20MAR2002 Version 6.0
 * Andy Finnell, March 2002
 * Copyright (c) 2000-2002 Macromedia, Inc.
 *
 * based on menu.js
 * by gary smith, July 1997
 * Copyright (c) 1997-1999 Netscape Communications Corp.
 *
 * Netscape grants you a royalty free license to use or modify this
 * software provided that this copyright notice appears on all copies.
 * This software is provided "AS IS," without a warranty of any kind.
 */
function Menu(label, mw, mh, fnt, fs, fclr, fhclr, bg, bgh, halgn, valgn, pad, space, to, sx, sy, srel, opq, vert, idt, aw, ah) 
{
	this.version = "020320 [Menu; mm_menu.js]";
	this.type = "Menu";
	this.menuWidth = mw;
	this.menuItemHeight = mh;
	this.fontSize = fs;
	this.fontWeight = "plain";
	this.fontFamily = fnt;
	this.fontColor = fclr;
	this.fontColorHilite = fhclr;
	this.bgColor = "#555555";
	this.menuBorder = 1;
	this.menuBgOpaque=opq;
	this.menuItemBorder = 1;
	this.menuItemIndent = idt;
	this.menuItemBgColor = bg;
	this.menuItemVAlign = valgn;
	this.menuItemHAlign = halgn;
	this.menuItemPadding = pad;
	this.menuItemSpacing = space;
	this.menuLiteBgColor = "#ffffff";
	this.menuBorderBgColor = "#777777";
	this.menuHiliteBgColor = bgh;
	this.menuContainerBgColor = "#cccccc";
	this.childMenuIcon = "arrows.gif";
	this.submenuXOffset = sx;
	this.submenuYOffset = sy;
	this.submenuRelativeToItem = srel;
	this.vertical = vert;
	this.items = new Array();
	this.actions = new Array();
	this.childMenus = new Array();
	this.hideOnMouseOut = true;
	this.hideTimeout = to;
	this.addMenuItem = addMenuItem;
	this.writeMenus = writeMenus;
	this.MM_showMenu = MM_showMenu;
	this.onMenuItemOver = onMenuItemOver;
	this.onMenuItemAction = onMenuItemAction;
	this.hideMenu = hideMenu;
	this.hideChildMenu = hideChildMenu;
	if (!window.menus) window.menus = new Array();
	this.label = " " + label;
	window.menus[this.label] = this;
	window.menus[window.menus.length] = this;
	if (!window.activeMenus) window.activeMenus = new Array();
}

function addMenuItem(label, action) {
	this.items[this.items.length] = label;
	this.actions[this.actions.length] = action;
}

function FIND(item) {
	if( window.mmIsOpera ) return(document.getElementById(item));
	if (document.all) return(document.all[item]);
	if (document.getElementById) return(document.getElementById(item));
	return(false);
}

function writeMenus(container) {
	if (window.triedToWriteMenus) return;
	var agt = navigator.userAgent.toLowerCase();
	window.mmIsOpera = agt.indexOf("opera") != -1;
	if (!container && document.layers) {
		window.delayWriteMenus = this.writeMenus;
		var timer = setTimeout('delayWriteMenus()', 500);
		container = new Layer(100);
		clearTimeout(timer);
	} else if (document.all || document.hasChildNodes || window.mmIsOpera) {
		document.writeln('<span id="menuContainer"></span>');
		container = FIND("menuContainer");
	}

	window.mmHideMenuTimer = null;
	if (!container) return;	
	window.triedToWriteMenus = true; 
	container.isContainer = true;
	container.menus = new Array();
	for (var i=0; i<window.menus.length; i++) 
		container.menus[i] = window.menus[i];
	window.menus.length = 0;
	var countMenus = 0;
	var countItems = 0;
	var top = 0;
	var content = '';
	var lrs = false;
	var theStat = "";
	var tsc = 0;
	if (document.layers) lrs = true;
	for (var i=0; i<container.menus.length; i++, countMenus++) {
		var menu = container.menus[i];
		if (menu.bgImageUp || !menu.menuBgOpaque) {
			menu.menuBorder = 0;
			menu.menuItemBorder = 0;
		}
		if (lrs) {
			var menuLayer = new Layer(100, container);
			var lite = new Layer(100, menuLayer);
			lite.top = menu.menuBorder;
			lite.left = menu.menuBorder;
			var body = new Layer(100, lite);
			body.top = menu.menuBorder;
			body.left = menu.menuBorder;
		} else {
			content += ''+
			'<div id="menuLayer'+ countMenus +'" style="position:absolute;z-index:1;left:10px;top:'+ (i * 100) +'px;visibility:hidden;color:' +  menu.menuBorderBgColor + ';">\n'+
			'  <div id="menuLite'+ countMenus +'" style="position:absolute;z-index:1;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;" onmouseout="mouseoutMenu();">\n'+
			'	 <div id="menuFg'+ countMenus +'" style="position:absolute;left:'+ menu.menuBorder +'px;top:'+ menu.menuBorder +'px;visibility:hide;">\n'+
			'';
		}
		var x=i;
		for (var i=0; i<menu.items.length; i++) {
			var item = menu.items[i];
			var childMenu = false;
			var defaultHeight = menu.fontSize+2*menu.menuItemPadding;
			if (item.label) {
				item = item.label;
				childMenu = true;
			}
			menu.menuItemHeight = menu.menuItemHeight || defaultHeight;
			var itemProps = '';
			if( menu.fontFamily != '' ) itemProps += 'font-family:' + menu.fontFamily +';';
			itemProps += 'font-weight:' + menu.fontWeight + ';font-size:' + menu.fontSize + 'px;';
			if (menu.fontStyle) itemProps += 'font-style:' + menu.fontStyle + ';';
			if (document.all || window.mmIsOpera) 
				itemProps += 'font-size:' + menu.fontSize + 'px;" onmouseover="onMenuItemOver(null,this);" onclick="onMenuItemAction(null,this);';
			else if (!document.layers) {
				itemProps += 'font-size:' + menu.fontSize + 'px;';
			}
			var l;
			if (lrs) {
				var lw = menu.menuWidth;
				if( menu.menuItemHAlign == 'right' ) lw -= menu.menuItemPadding;
				l = new Layer(lw,body);
			}
			var itemLeft = 0;
			var itemTop = i*menu.menuItemHeight;
			if( !menu.vertical ) {
				itemLeft = i*menu.menuWidth;
				itemTop = 0;
			}
			var dTag = '<div id="menuItem'+ countItems +'" style="position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';
			var dClose = '</div>'
			if (menu.bgImageUp) dTag = '<div id="menuItem'+ countItems +'" style="background:url('+menu.bgImageUp+');position:absolute;left:' + itemLeft + 'px;top:'+ itemTop +'px;'+ itemProps +'">';

			var left = 0, top = 0, right = 0, bottom = 0;
			left = 1 + menu.menuItemPadding + menu.menuItemIndent;
			right = left + menu.menuWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
			if( menu.menuItemVAlign == 'top' ) top = menu.menuItemPadding;
			if( menu.menuItemVAlign == 'bottom' ) top = menu.menuItemHeight-menu.fontSize-1-menu.menuItemPadding;
			if( menu.menuItemVAlign == 'middle' ) top = ((menu.menuItemHeight/2)-(menu.fontSize/2)-1);
			bottom = menu.menuItemHeight - 2*menu.menuItemPadding;
			var textProps = 'position:absolute;left:' + left + 'px;top:' + top + 'px;';
			if (lrs) {
				textProps +=itemProps + 'right:' + right + ';bottom:' + bottom + ';';
				dTag = "";
				dClose = "";
			}
			
			if(document.all && !window.mmIsOpera) {
				item = '<div align="' + menu.menuItemHAlign + '">' + item + '</div>';
			} else if (lrs) {
				item = '<div style="text-align:' + menu.menuItemHAlign + ';">' + item + '</div>';
			} else {
				var hitem = null;
				if( menu.menuItemHAlign != 'left' ) {
					if(window.mmIsOpera) {
						var operaWidth = menu.menuItemHAlign == 'center' ? -(menu.menuWidth-2*menu.menuItemPadding) : (menu.menuWidth-6*menu.menuItemPadding);
						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:' + menu.menuItemPadding + 'px;width:' + operaWidth + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
					} else {
						hitem = '<div id="menuItemHilite' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
						item = '<div id="menuItemText' + countItems + 'Shim" style="position:absolute;top:1px;left:1px;right:-' + (left+menu.menuWidth-3*menu.menuItemPadding) + 'px;text-align:' 
							+ menu.menuItemHAlign + ';visibility:visible;">' + item + '</div>';
					}
				} else hitem = null;
			}
			if(document.all && !window.mmIsOpera) item = '<div id="menuItemShim' + countItems + '" style="position:absolute;left:0px;top:0px;">' + item + '</div>';
			var dText	= '<div id="menuItemText'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColor +';">'+ item +'&nbsp</div>\n'
						+ '<div id="menuItemHilite'+ countItems +'" style="' + textProps + 'color:'+ menu.fontColorHilite +';visibility:hidden;">' 
						+ (hitem||item) +'&nbsp</div>';
			if (childMenu) content += ( dTag + dText + '<div id="childMenu'+ countItems +'" style="position:absolute;left:0px;top:3px;"><img src="'+ menu.childMenuIcon +'"></div>\n' + dClose);
			else content += ( dTag + dText + dClose);
			if (lrs) {
				l.document.open("text/html");
				l.document.writeln(content);
				l.document.close();	
				content = '';
				theStat += "-";
				tsc++;
				if (tsc > 50) {
					tsc = 0;
					theStat = "";
				}
				status = theStat;
			}
			countItems++;  
		}
		if (lrs) {
			var focusItem = new Layer(100, body);
			focusItem.visiblity="hidden";
			focusItem.document.open("text/html");
			focusItem.document.writeln("&nbsp;");
			focusItem.document.close();	
		} else {
		  content += '	  <div id="focusItem'+ countMenus +'" style="position:absolute;left:0px;top:0px;visibility:hide;" onclick="onMenuItemAction(null,this);">&nbsp;</div>\n';
		  content += '   </div>\n  </div>\n</div>\n';
		}
		i=x;
	}
	if (document.layers) {		
		container.clip.width = window.innerWidth;
		container.clip.height = window.innerHeight;
		container.onmouseout = mouseoutMenu;
		container.menuContainerBgColor = this.menuContainerBgColor;
		for (var i=0; i<container.document.layers.length; i++) {
			proto = container.menus[i];
			var menu = container.document.layers[i];
			container.menus[i].menuLayer = menu;
			container.menus[i].menuLayer.Menu = container.menus[i];
			container.menus[i].menuLayer.Menu.container = container;
			var body = menu.document.layers[0].document.layers[0];
			body.clip.width = proto.menuWidth || body.clip.width;
			body.clip.height = proto.menuHeight || body.clip.height;
			for (var n=0; n<body.document.layers.length-1; n++) {
				var l = body.document.layers[n];
				l.Menu = container.menus[i];
				l.menuHiliteBgColor = proto.menuHiliteBgColor;
				l.document.bgColor = proto.menuItemBgColor;
				l.saveColor = proto.menuItemBgColor;
				l.onmouseover = proto.onMenuItemOver;
				l.onclick = proto.onMenuItemAction;
				l.mmaction = container.menus[i].actions[n];
				l.focusItem = body.document.layers[body.document.layers.length-1];
				l.clip.width = proto.menuWidth || body.clip.width;
				l.clip.height = proto.menuItemHeight || l.clip.height;
				if (n>0) {
					if( l.Menu.vertical ) l.top = body.document.layers[n-1].top + body.document.layers[n-1].clip.height + proto.menuItemBorder + proto.menuItemSpacing;
					else l.left = body.document.layers[n-1].left + body.document.layers[n-1].clip.width + proto.menuItemBorder + proto.menuItemSpacing;
				}
				l.hilite = l.document.layers[1];
				if (proto.bgImageUp) l.background.src = proto.bgImageUp;
				l.document.layers[1].isHilite = true;
				if (l.document.layers.length > 2) {
					l.childMenu = container.menus[i].items[n].menuLayer;
					l.document.layers[2].left = l.clip.width -13;
					l.document.layers[2].top = (l.clip.height / 2) -4;
					l.document.layers[2].clip.left += 3;
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
			}
			if( proto.menuBgOpaque ) body.document.bgColor = proto.bgColor;
			if( proto.vertical ) {
				body.clip.width  = l.clip.width +proto.menuBorder;
				body.clip.height = l.top + l.clip.height +proto.menuBorder;
			} else {
				body.clip.height  = l.clip.height +proto.menuBorder;
				body.clip.width = l.left + l.clip.width  +proto.menuBorder;
				if( body.clip.width > window.innerWidth ) body.clip.width = window.innerWidth;
			}
			var focusItem = body.document.layers[n];
			focusItem.clip.width = body.clip.width;
			focusItem.Menu = l.Menu;
			focusItem.top = -30;
            focusItem.captureEvents(Event.MOUSEDOWN);
            focusItem.onmousedown = onMenuItemDown;
			if( proto.menuBgOpaque ) menu.document.bgColor = proto.menuBorderBgColor;
			var lite = menu.document.layers[0];
			if( proto.menuBgOpaque ) lite.document.bgColor = proto.menuLiteBgColor;
			lite.clip.width = body.clip.width +1;
			lite.clip.height = body.clip.height +1;
			menu.clip.width = body.clip.width + (proto.menuBorder * 3) ;
			menu.clip.height = body.clip.height + (proto.menuBorder * 3);
		}
	} else {
		if ((!document.all) && (container.hasChildNodes) && !window.mmIsOpera) {
			container.innerHTML=content;
		} else {
			container.document.open("text/html");
			container.document.writeln(content);
			container.document.close();	
		}
		if (!FIND("menuLayer0")) return;
		var menuCount = 0;
		for (var x=0; x<container.menus.length; x++) {
			var menuLayer = FIND("menuLayer" + x);
			container.menus[x].menuLayer = "menuLayer" + x;
			menuLayer.Menu = container.menus[x];
			menuLayer.Menu.container = "menuLayer" + x;
			menuLayer.style.zindex = 1;
		    var s = menuLayer.style;
			s.pixeltop = -300;
			s.pixelleft = -300;
			s.top = '-300px';
			s.left = '-300px';

			var menu = container.menus[x];
			menu.menuItemWidth = menu.menuWidth || menu.menuIEWidth || 140;
			if( menu.menuBgOpaque ) menuLayer.style.backgroundColor = menu.menuBorderBgColor;
			var top = 0;
			var left = 0;
			menu.menuItemLayers = new Array();
			for (var i=0; i<container.menus[x].items.length; i++) {
				var l = FIND("menuItem" + menuCount);
				l.Menu = container.menus[x];
				l.Menu.menuItemLayers[l.Menu.menuItemLayers.length] = l;
				if (l.addEventListener || window.mmIsOpera) {
					l.style.width = menu.menuItemWidth + 'px';
					l.style.height = menu.menuItemHeight + 'px';
					l.style.pixelWidth = menu.menuItemWidth;
					l.style.pixelHeight = menu.menuItemHeight;
					l.style.top = top + 'px';
					l.style.left = left + 'px';
					if(l.addEventListener) {
						l.addEventListener("mouseover", onMenuItemOver, false);
						l.addEventListener("click", onMenuItemAction, false);
						l.addEventListener("mouseout", mouseoutMenu, false);
					}
					if( menu.menuItemHAlign != 'left' ) {
						l.hiliteShim = FIND("menuItemHilite" + menuCount + "Shim");
						l.hiliteShim.style.visibility = "inherit";
						l.textShim = FIND("menuItemText" + menuCount + "Shim");
						l.hiliteShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						l.hiliteShim.style.width = l.hiliteShim.style.pixelWidth;
						l.textShim.style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						l.textShim.style.width = l.textShim.style.pixelWidth;	
					}
				} else {
					l.style.pixelWidth = menu.menuItemWidth;
					l.style.pixelHeight = menu.menuItemHeight;
					l.style.pixelTop = top;
					l.style.pixelLeft = left;
					if( menu.menuItemHAlign != 'left' ) {
						var shim = FIND("menuItemShim" + menuCount);
						shim[0].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						shim[1].style.pixelWidth = menu.menuItemWidth - 2*menu.menuItemPadding - menu.menuItemIndent;
						shim[0].style.width = shim[0].style.pixelWidth + 'px';
						shim[1].style.width = shim[1].style.pixelWidth + 'px';
					}
				}
				if( menu.vertical ) top = top + menu.menuItemHeight+menu.menuItemBorder+menu.menuItemSpacing;
				else left = left + menu.menuItemWidth+menu.menuItemBorder+menu.menuItemSpacing;
				l.style.fontSize = menu.fontSize + 'px';
				l.style.backgroundColor = menu.menuItemBgColor;
				l.style.visibility = "inherit";
				l.saveColor = menu.menuItemBgColor;
				l.menuHiliteBgColor = menu.menuHiliteBgColor;
				l.mmaction = container.menus[x].actions[i];
				l.hilite = FIND("menuItemHilite" + menuCount);
				l.focusItem = FIND("focusItem" + x);
				l.focusItem.style.pixelTop = -30;
				l.focusItem.style.top = '-30px';
				var childItem = FIND("childMenu" + menuCount);
				if (childItem) {
					l.childMenu = container.menus[x].items[i].menuLayer;
					childItem.style.pixelLeft = menu.menuItemWidth -11;
					childItem.style.left = childItem.style.pixelLeft + 'px';
					childItem.style.pixelTop = (menu.menuItemHeight /2) -4;
					childItem.style.top = childItem.style.pixelTop + 'px';
					l.Menu.childMenus[l.Menu.childMenus.length] = l.childMenu;
				}
				l.style.cursor = "hand";
				menuCount++;
			}
			if( menu.vertical ) {
				menu.menuHeight = top-1-menu.menuItemSpacing;
				menu.menuWidth = menu.menuItemWidth;
			} else {
				menu.menuHeight = menu.menuItemHeight;
				menu.menuWidth = left-1-menu.menuItemSpacing;
			}

			var lite = FIND("menuLite" + x);
			var s = lite.style;
			s.pixelHeight = menu.menuHeight +(menu.menuBorder * 2);
			s.height = s.pixelHeight + 'px';
			s.pixelWidth = menu.menuWidth + (menu.menuBorder * 2);
			s.width = s.pixelWidth + 'px';
			if( menu.menuBgOpaque ) s.backgroundColor = menu.menuLiteBgColor;

			var body = FIND("menuFg" + x);
			s = body.style;
			s.pixelHeight = menu.menuHeight + menu.menuBorder;
			s.height = s.pixelHeight + 'px';
			s.pixelWidth = menu.menuWidth + menu.menuBorder;
			s.width = s.pixelWidth + 'px';
			if( menu.menuBgOpaque ) s.backgroundColor = menu.bgColor;

			s = menuLayer.style;
			s.pixelWidth  = menu.menuWidth + (menu.menuBorder * 4);
			s.width = s.pixelWidth + 'px';
			s.pixelHeight  = menu.menuHeight+(menu.menuBorder*4);
			s.height = s.pixelHeight + 'px';
		}
	}
	if (document.captureEvents) document.captureEvents(Event.MOUSEUP);
	if (document.addEventListener) document.addEventListener("mouseup", onMenuItemOver, false);
	if (document.layers && window.innerWidth) {
		window.onresize = NS4resize;
		window.NS4sIW = window.innerWidth;
		window.NS4sIH = window.innerHeight;
		setTimeout("NS4resize()",500);
	}
	document.onmouseup = mouseupMenu;
	window.mmWroteMenu = true;
	status = "";
}

function NS4resize() {
	if (NS4sIW != window.innerWidth || NS4sIH != window.innerHeight) window.location.reload();
}

function onMenuItemOver(e, l) {
	MM_clearTimeout();
	l = l || this;
	var a = window.ActiveMenuItem;
	if (document.layers) {
		if (a) {
			a.document.bgColor = a.saveColor;
			if (a.hilite) a.hilite.visibility = "hidden";
			if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
			a.focusItem.top = -100;
			a.clicked = false;
		}
		if (l.hilite) {
			l.document.bgColor = l.menuHiliteBgColor;
			l.zIndex = 10;
			l.hilite.visibility = "inherit";
			l.hilite.zIndex = 20;
			l.document.layers[1].zIndex = 10;
			l.focusItem.zIndex = this.zIndex +20;
		}
		if (l.Menu.bgImageOver) l.background.src = l.Menu.bgImageOver;
		l.focusItem.top = this.top;
		l.focusItem.left = this.left;
		l.focusItem.clip.width = l.clip.width;
		l.focusItem.clip.height = l.clip.height;
		l.Menu.hideChildMenu(l);
	} else if (l.style && l.Menu) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";;
		} 
		l.style.backgroundColor = l.menuHiliteBgColor;
		l.zIndex = 10;
		if (l.Menu.bgImageOver) l.style.background = "url(" + l.Menu.bgImageOver +")";
		if (l.hilite) {
			l.hilite.style.visibility = "inherit";
			if( l.hiliteShim ) l.hiliteShim.style.visibility = "visible";
		}
		l.focusItem.style.pixelTop = l.style.pixelTop;
		l.focusItem.style.top = l.focusItem.style.pixelTop + 'px';
		l.focusItem.style.pixelLeft = l.style.pixelLeft;
		l.focusItem.style.left = l.focusItem.style.pixelLeft + 'px';
		l.focusItem.style.zIndex = l.zIndex +10;
		l.Menu.hideChildMenu(l);
	} else return;
	window.ActiveMenuItem = l;
}

function onMenuItemAction(e, l) {
	l = window.ActiveMenuItem;
	if (!l) return;
	hideActiveMenus();
	if (l.mmaction) eval("" + l.mmaction);
	window.ActiveMenuItem = 0;
}

function MM_clearTimeout() {
	if (mmHideMenuTimer) clearTimeout(mmHideMenuTimer);
	mmHideMenuTimer = null;
	mmDHFlag = false;
}

function MM_startTimeout() {
	if( window.ActiveMenu ) {
		mmStart = new Date();
		mmDHFlag = true;
		mmHideMenuTimer = setTimeout("mmDoHide()", window.ActiveMenu.Menu.hideTimeout);
	}
}

function mmDoHide() {
	if (!mmDHFlag || !window.ActiveMenu) return;
	var elapsed = new Date() - mmStart;
	var timeout = window.ActiveMenu.Menu.hideTimeout;
	if (elapsed < timeout) {
		mmHideMenuTimer = setTimeout("mmDoHide()", timeout+100-elapsed);
		return;
	}
	mmDHFlag = false;
	hideActiveMenus();
	window.ActiveMenuItem = 0;
}

function MM_showMenu(menu, x, y, child, imgname) {
	if (!window.mmWroteMenu) return;
	MM_clearTimeout();
	if (menu) {
		var obj = FIND(imgname) || document.images[imgname] || document.links[imgname] || document.anchors[imgname];
		x = moveXbySlicePos (x, obj);
		y = moveYbySlicePos (y, obj);
	}
	if (document.layers) {
		if (menu) {
			var l = menu.menuLayer || menu;
			l.top = l.left = 1;
			hideActiveMenus();
			if (this.visibility) l = this;
			window.ActiveMenu = l;
		} else {
			var l = child;
		}
		if (!l) return;
		for (var i=0; i<l.layers.length; i++) { 			   
			if (!l.layers[i].isHilite) l.layers[i].visibility = "inherit";
			if (l.layers[i].document.layers.length > 0) MM_showMenu(null, "relative", "relative", l.layers[i]);
		}
		if (l.parentLayer) {
			if (x != "relative") l.parentLayer.left = x || window.pageX || 0;
			if (l.parentLayer.left + l.clip.width > window.innerWidth) l.parentLayer.left -= (l.parentLayer.left + l.clip.width - window.innerWidth);
			if (y != "relative") l.parentLayer.top = y || window.pageY || 0;
			if (l.parentLayer.isContainer) {
				l.Menu.xOffset = window.pageXOffset;
				l.Menu.yOffset = window.pageYOffset;
				l.parentLayer.clip.width = window.ActiveMenu.clip.width +2;
				l.parentLayer.clip.height = window.ActiveMenu.clip.height +2;
				if (l.parentLayer.menuContainerBgColor && l.Menu.menuBgOpaque ) l.parentLayer.document.bgColor = l.parentLayer.menuContainerBgColor;
			}
		}
		l.visibility = "inherit";
		if (l.Menu) l.Menu.container.visibility = "inherit";
	} else if (FIND("menuItem0")) {
		var l = menu.menuLayer || menu;	
		hideActiveMenus();
		if (typeof(l) == "string") l = FIND(l);
		window.ActiveMenu = l;
		var s = l.style;
		s.visibility = "inherit";
		if (x != "relative") {
			s.pixelLeft = x || (window.pageX + document.body.scrollLeft) || 0;
			s.left = s.pixelLeft + 'px';
		}
		if (y != "relative") {
			s.pixelTop = y || (window.pageY + document.body.scrollTop) || 0;
			s.top = s.pixelTop + 'px';
		}
		l.Menu.xOffset = document.body.scrollLeft;
		l.Menu.yOffset = document.body.scrollTop;
	}
	if (menu) window.activeMenus[window.activeMenus.length] = l;
	MM_clearTimeout();
}

function onMenuItemDown(e, l) {
	var a = window.ActiveMenuItem;
	if (document.layers && a) {
		a.eX = e.pageX;
		a.eY = e.pageY;
		a.clicked = true;
    }
}

function mouseupMenu(e) {
	hideMenu(true, e);
	hideActiveMenus();
	return true;
}

function getExplorerVersion() {
	var ieVers = parseFloat(navigator.appVersion);
	if( navigator.appName != 'Microsoft Internet Explorer' ) return ieVers;
	var tempVers = navigator.appVersion;
	var i = tempVers.indexOf( 'MSIE ' );
	if( i >= 0 ) {
		tempVers = tempVers.substring( i+5 );
		ieVers = parseFloat( tempVers ); 
	}
	return ieVers;
}

function mouseoutMenu() {
	if ((navigator.appName == "Microsoft Internet Explorer") && (getExplorerVersion() < 4.5))
		return true;
	hideMenu(false, false);
	return true;
}

function hideMenu(mouseup, e) {
	var a = window.ActiveMenuItem;
	if (a && document.layers) {
		a.document.bgColor = a.saveColor;
		a.focusItem.top = -30;
		if (a.hilite) a.hilite.visibility = "hidden";
		if (mouseup && a.mmaction && a.clicked && window.ActiveMenu) {
 			if (a.eX <= e.pageX+15 && a.eX >= e.pageX-15 && a.eY <= e.pageY+10 && a.eY >= e.pageY-10) {
				setTimeout('window.ActiveMenu.Menu.onMenuItemAction();', 500);
			}
		}
		a.clicked = false;
		if (a.Menu.bgImageOver) a.background.src = a.Menu.bgImageUp;
	} else if (window.ActiveMenu && FIND("menuItem0")) {
		if (a) {
			a.style.backgroundColor = a.saveColor;
			if (a.hilite) a.hilite.style.visibility = "hidden";
			if (a.hiliteShim) a.hiliteShim.style.visibility = "inherit";
			if (a.Menu.bgImageUp) a.style.background = "url(" + a.Menu.bgImageUp +")";
		}
	}
	if (!mouseup && window.ActiveMenu) {
		if (window.ActiveMenu.Menu) {
			if (window.ActiveMenu.Menu.hideOnMouseOut) MM_startTimeout();
			return(true);
		}
	}
	return(true);
}

function hideChildMenu(hcmLayer) {
	MM_clearTimeout();
	var l = hcmLayer;
	for (var i=0; i < l.Menu.childMenus.length; i++) {
		var theLayer = l.Menu.childMenus[i];
		if (document.layers) theLayer.visibility = "hidden";
		else {
			theLayer = FIND(theLayer);
			theLayer.style.visibility = "hidden";
			if( theLayer.Menu.menuItemHAlign != 'left' ) {
				for(var j = 0; j < theLayer.Menu.menuItemLayers.length; j++) {
					var itemLayer = theLayer.Menu.menuItemLayers[j];
					if(itemLayer.textShim) itemLayer.textShim.style.visibility = "inherit";
				}
			}
		}
		theLayer.Menu.hideChildMenu(theLayer);
	}
	if (l.childMenu) {
		var childMenu = l.childMenu;
		if (document.layers) {
			l.Menu.MM_showMenu(null,null,null,childMenu.layers[0]);
			childMenu.zIndex = l.parentLayer.zIndex +10;
			childMenu.top = l.Menu.menuLayer.top + l.Menu.submenuYOffset;
			if( l.Menu.vertical ) {
				if( l.Menu.submenuRelativeToItem ) childMenu.top += l.top + l.parentLayer.top;
				childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
			} else {
				childMenu.top += l.top + l.parentLayer.top;	
				if( l.Menu.submenuRelativeToItem ) childMenu.left = l.Menu.menuLayer.left + l.left + l.clip.width + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
				else childMenu.left = l.parentLayer.left + l.parentLayer.clip.width - (2*l.Menu.menuBorder) + l.Menu.menuLayer.left + l.Menu.submenuXOffset;
			}
			if( childMenu.left < l.Menu.container.clip.left ) l.Menu.container.clip.left = childMenu.left;
			var w = childMenu.clip.width+childMenu.left-l.Menu.container.clip.left;
			if (w > l.Menu.container.clip.width)  l.Menu.container.clip.width = w;
			var h = childMenu.clip.height+childMenu.top-l.Menu.container.clip.top;
			if (h > l.Menu.container.clip.height) l.Menu.container.clip.height = h;
			l.document.layers[1].zIndex = 10;
			childMenu.visibility = "inherit";
		} else if (FIND("menuItem0")) {
			childMenu = FIND(l.childMenu);
			var menuLayer = FIND(l.Menu.menuLayer);
			var s = childMenu.style;
			s.zIndex = menuLayer.style.zIndex+10;
			if (document.all || window.mmIsOpera) {
				s.pixelTop = menuLayer.style.pixelTop + l.Menu.submenuYOffset;
				if( l.Menu.vertical ) {
					if( l.Menu.submenuRelativeToItem ) s.pixelTop += l.style.pixelTop;
					s.pixelLeft = l.style.pixelWidth + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
					s.left = s.pixelLeft + 'px';
				} else {
					s.pixelTop += l.style.pixelTop;
					if( l.Menu.submenuRelativeToItem ) s.pixelLeft = menuLayer.style.pixelLeft + l.style.pixelLeft + l.style.pixelWidth + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
					else s.pixelLeft = (menuLayer.style.pixelWidth-4*l.Menu.menuBorder) + menuLayer.style.pixelLeft + l.Menu.submenuXOffset;
					s.left = s.pixelLeft + 'px';
				}
			} else {
				var top = parseInt(menuLayer.style.top) + l.Menu.submenuYOffset;
				var left = 0;
				if( l.Menu.vertical ) {
					if( l.Menu.submenuRelativeToItem ) top += parseInt(l.style.top);
					left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
				} else {
					top += parseInt(l.style.top);
					if( l.Menu.submenuRelativeToItem ) left = parseInt(menuLayer.style.left) + parseInt(l.style.left) + parseInt(l.style.width) + (2*l.Menu.menuBorder) + l.Menu.submenuXOffset;
					else left = (parseInt(menuLayer.style.width)-4*l.Menu.menuBorder) + parseInt(menuLayer.style.left) + l.Menu.submenuXOffset;
				}
				s.top = top + 'px';
				s.left = left + 'px';
			}
			childMenu.style.visibility = "inherit";
		} else return;
		window.activeMenus[window.activeMenus.length] = childMenu;
	}
}

function hideActiveMenus() {
	if (!window.activeMenus) return;
	for (var i=0; i < window.activeMenus.length; i++) {
		if (!activeMenus[i]) continue;
		if (activeMenus[i].visibility && activeMenus[i].Menu && !window.mmIsOpera) {
			activeMenus[i].visibility = "hidden";
			activeMenus[i].Menu.container.visibility = "hidden";
			activeMenus[i].Menu.container.clip.left = 0;
		} else if (activeMenus[i].style) {
			var s = activeMenus[i].style;
			s.visibility = "hidden";
			s.left = '-200px';
			s.top = '-200px';
		}
	}
	if (window.ActiveMenuItem) hideMenu(false, false);
	window.activeMenus.length = 0;
}

function moveXbySlicePos (x, img) { 
	if (!document.layers) {
		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
		var par = img;
		var lastOffset = 0;
		while(par){
			if( par.leftMargin && ! onWindows ) x += parseInt(par.leftMargin);
			if( (par.offsetLeft != lastOffset) && par.offsetLeft ) x += parseInt(par.offsetLeft);
			if( par.offsetLeft != 0 ) lastOffset = par.offsetLeft;
			par = macIE45 ? par.parentElement : par.offsetParent;
		}
	} else if (img.x) x += img.x;
	return x;
}

function moveYbySlicePos (y, img) {
	if(!document.layers) {
		var onWindows = navigator.platform ? navigator.platform == "Win32" : false;
		var macIE45 = document.all && !onWindows && getExplorerVersion() == 4.5;
		var par = img;
		var lastOffset = 0;
		while(par){
			if( par.topMargin && !onWindows ) y += parseInt(par.topMargin);
			if( (par.offsetTop != lastOffset) && par.offsetTop ) y += parseInt(par.offsetTop);
			if( par.offsetTop != 0 ) lastOffset = par.offsetTop;
			par = macIE45 ? par.parentElement : par.offsetParent;
		}		
	} else if (img.y >= 0) y += img.y;
	return y;
}

function MM_reloadPage(init) {
  if (init==true) with (navigator) {
	  if (appName.indexOf("Explorer") != -1) {
		  msie = true;
	  } else {
  		  msie = false;
		  document.MM_pgW=innerWidth;
		  document.MM_pgH=innerHeight;
	  }
	onresize=MM_reloadPage;
   } else {
	   if (msie == false) {
		   if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) {
//			   location.reload();
		   }
	   } else {
//		   location.reload();
	   }
   }
}
MM_reloadPage(true);
var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height) {
	if(popUpWin) {
		if(!popUpWin.closed) popUpWin.close();
	}
	popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}
// End Macromedia Code

// Unhide -->