

<!--
	var ns4=document.layers?1:0
	var ie4=document.all?1:0
	var ns6=document.getElementById&&!document.all?1:0
	var win;
	function testanchor(anchorname)
	{
	var anchorexists
	if (ns4)
		{
		anchorexists = eval('document.anchors["' + anchorname + '"]')
		}
	if (ie4)
		{
		anchorexists = eval('document.anchors("' + anchorname + '")')
		}
	if (ns6)
		{
		anchorexists = eval('document.anchors["' + anchorname + '"]')
		}
	if (anchorexists==null) 
		{return false}
	else
		{return true}
	}
	function overcolor(item)
	{
	if (ns4)
		{
		this.captureEvents(Event.MOUSEUP)
		this.onmouseup=function(){nsclickhandler(item.name)};
		item.bgColor="FFAD00";
		}
	else
		{
		item.style.backgroundColor="FFAD00";
		}
	}
	function outcolor(item)
	{
	if (ns4)
		{
		this.releaseEvents(Event.MOUSEUP)
		item.bgColor="A0ADB5";
		}
	else
		{
		item.style.backgroundColor="A0ADB5";
		}
	}
	function NewSite(newurl)
	{
	win=window.open(newurl, 'newSite','toolbar=yes,menubar=yes,location=yes,status=yes,height=400,width=400,top=00,left=00,resizable,scrollbars');
	setTimeout('win.focus();',500);
	}
	function nsclickhandler(newLoc)
	{
		if (testanchor(newLoc))
			
			{			
			location.hash = newLoc;
			}
		else
			{
			alert("There are no entries for this section")
			}	}
	function popUPHelp(newurl)
	{
	win = window.open(newurl, 'newSite','toolbar=yes,menubar=yes,location=yes,status=yes,height=270,width=430,top=00,left=00,resizable,scrollbars');
	setTimeout('win.focus();',500);
	}
	
	function swappageloc(newLoc)
	{
		if (testanchor(newLoc))
			
			{			
			location.hash = newLoc;
			}
		else
			{
			alert("There are no entries for this section")
			}
	}	
	function swaplocation(newLoc)
	{
	/*if (newLoc.indexOf("dest") > -1)
		{
		window.open(newLoc, 'destinfo','menubar=no,height=470,width=697,top=100,left=100,scrollbars');
		}
	else
		{
	*/
		if (newLoc.indexOf("datahome.oag.com") > -1)
			{
			NewSite('http://datahome.oag.com')
			}
		else
			{
			location.href = newLoc;
			}
	//	}
	}
	function writeMenuButton(buttontext, buttonlink, buttonnumber, hilite)
	{
	document.write("<tr><td width=138>")
	if (ns4)
		{
		if (hilite)
			document.write('<ilayer><layer onfocus=swaplocation("' + buttonlink + '") width="100%" bgcolor="#FFAD00">');
		else
			document.write('<ilayer><layer onfocus=swaplocation("' + buttonlink + '") onmouseover="overcolor(this)" onmouseout="outcolor(this)" width="100%" bgcolor="#A0ADB5">');
		document.write('<img src="/graphics/global/spacer.jpg" height=0><br>');
		document.write('<table background=""><tr><td class=menuitem width=118>' + buttontext + '</td><td width=20 class=menunumber valign=top>' + buttonnumber + '</td></tr></table>');
		document.write('</layer></ilayer>')
		}
	else
		{
		if (hilite)
			document.write('<div width=100% onclick=swaplocation("' + buttonlink + '") style="background-color:#FFAD00;cursor:hand">')
		else
			document.write('<div width=100% onclick=swaplocation("' + buttonlink + '") onmouseover="overcolor(this)" onmouseout="outcolor(this)" style="background-color:#A0ADB5;cursor:hand">')
		document.write('<table><tr><td class=menuitem width=118>' + buttontext + '</td><td width=20 class=menunumber valign=top>' + buttonnumber + '</td></tr></table>')
		document.write('</div>');
		}
	document.write('</td>');
	document.write('</tr>');
	document.write('<tr>');	
	document.write('<td height=1 background="/graphics/global/spacer.jpg"><img src="/graphics/global/spacer.jpg"><br>');
	document.write('</td>');
	document.write('</tr>');
	}

	function writeMenu()
	{
	document.write('<table cellpadding=0 cellspacing=0 border=0 width=138>');
	for (var x=0;x < menutextlist.length; x++)
		{
		if (x==hiliteItem)
			writeMenuButton(menutextlist[x], menulinklist[x],"0" + (x+1), 1);
		else
			writeMenuButton(menutextlist[x], menulinklist[x],"0" + (x+1), 0);
		}
	document.write('<tr><td height=20>&nbsp;</td></tr>');
	document.write('</table>');
	}

var alphaArray= new Array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z')

function writeAlphaCell(letter)
	{
	var cellwidth = 28
	if (letter=='A'||letter=='N')
		{ 
		cellwidth=30;
		}
	if (letter=='M'||letter=='Z')
		{ 
		cellwidth=30;
		}
	document.write("<td width=' + cellwidth + ' height=34>")
	if (ns4)
		{
		document.write('<ilayer><layer name="' + letter  +'" onclick=swappageloc("' + letter + '") onmouseover="overcolor(this)" onmouseout="outcolor(this)" width=' + cellwidth + ' height="34" bgcolor="#A0ADB5">');
		document.write('<img src="/graphics/global/1pxl_clear.gif" height=0 width=0>');
		document.write('<table background="" cellpadding="0" cellspacing="0" border=0><tr height=34><td class=menuitem width=' + cellwidth + ' height=34 align=center>' + letter + '</td></tr></table>');
		document.write('</layer></ilayer>')
		}
	else
		{
		document.write('<div height=100% width=100% onclick=swappageloc("' + letter + '") onmouseover="overcolor(this)" onmouseout="outcolor(this)" style="background-color:#A0ADB5;cursor:hand">')
		document.write('<table cellpadding=0 cellspacing=0 border=0><tr><td class=menuitem width=' + cellwidth + ' height=35 align=center>' + letter + '</td></tr></table>')
		document.write('</div>');
		}
	document.write('</td>');
	}
function writeAlphaTable(titleText)
	{
	document.write('<table cellpadding=0 cellspacing=0 border=0 width=380>');
	document.write('<TR><td width=20 class=contenttitle>&nbsp;</td><td class=contenttitle height=25 width=360>' + titleText + '</TD><td width=20 class=contenttitle>&nbsp;</td></TR></table>')
	document.write('<table cellpadding=0 cellspacing=0 border=0 width=380>');
	document.write('<tr><td height=1 colspan=25 background="/graphics/global/spacer.jpg"><img src="/graphics/global/spacer.jpg"></td></tr>');
	document.write('<tr>');

	for (var x=0;x < 13; x++)
		{
			writeAlphaCell(alphaArray[x]);
			if (x!=12)
			{
			document.write('<td height=34 width=1 background="/graphics/global/spacer.jpg"><img src="/graphics/global/spacer.jpg"><br></td>');
			}
		}
	document.write('</tr>');
	document.write('<tr><td height=1 colspan=25 background="/graphics/global/spacer.jpg"><img src="/graphics/global/spacer.jpg"></td></tr>');
	document.write('<tr>');
	for (var x=13;x < 26; x++)
		{
			writeAlphaCell(alphaArray[x]);
			if (x!=25)
			{
			document.write('<td height=34 width=1 background="/graphics/global/spacer.jpg"><img src="/graphics/global/spacer.jpg"><br></td>');
			}
		}
	document.write('</tr></table>');
	}
function loLite(name)
{
if (document.images&&document.images[name])
	{
	document.images[name].src=window[name+'off'].src
	}
}

function hiLite(name)
{
if (document.images&&document.images[name])
	{
	document.images[name].src=window[name+'on'].src
	}
}
// -->
				