/***********************************************
* Bottom slide tooltip- by Ron Grafe (mailto:grafer@REMOVETHIScolumbus.rr.com)
* Website URL: http://www.gdevresources.com
* Script modified by and available at Dynamic Drive: http://www.dynamicdrive.com/
***********************************************/

//SET TOOLTIP DESCRIPTIONS BELOW
//Extend or contract array as needed
var description=new Array()
description[0]='Menu1'
description[1]='Menu2'
description[2]='Menu3'
description[3]='Menu4'
description[4]='Menu5'
description[5]='Menu6'
description[6]='Menu7'
description[7]='Menu8'
description[8]='Menu9'
description[9]='Menu10'
description[10]='Menu11'

//Do not edit below here

iens6=document.all||document.getElementById
ns4=document.layers

<!--GLOBAL VARIABLES-->
var thename
var theobj
var thetext
var winHeight
var winPositionFromTop
var winWidth
var startH=2
var startW=20
var openTimer
<!--END GLOBAL VARIABLES-->

<!--GLOBAL FUNCTIONS-->

function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function setObj(text,theswitch,inwidth,inheight) {

	thetext=text
	if(iens6){
		thename = "viewer"
		theobj=document.getElementById? document.getElementById(thename):document.all.thename
		winHeight=100
			if(iens6&&document.all) {
				winPositionFromTop=!window.opera? ietruebody().clientHeight : document.body.clientHeight
				winWidth=(ietruebody().clientWidth-ietruebody().leftMargin)
			}
			if(iens6&&!document.all) {
				winPositionFromTop=window.innerHeight
				winWidth=(window.innerWidth-(ietruebody().offsetLeft+30))
				//winWidth=(300)
			}
			if(theswitch=="override") {
				winWidth=inwidth
				winHeight=inheight
			}
		theobj.style.width=winWidth+"px"
		theobj.style.height=startH+"px"
			if(iens6&&document.all) {
				theobj.style.top=ietruebody().scrollTop+winPositionFromTop+"px"
				window.status=winPositionFromTop
				theobj.innerHTML = ""
				theobj.insertAdjacentHTML("BeforeEnd","<table cellspacing=0 width="+winWidth+" height="+winHeight+" border=1><tr><td width=100% valign=top><font type='times' size='2' style='color:black;font-weight:normal'>"+thetext+"</font></td></tr></table>")
			}
			if(iens6&&!document.all) {
				theobj.style.top=window.pageYOffset+winPositionFromTop+"px"
				theobj.innerHTML = ""
				theobj.innerHTML="<table cellspacing=0 width="+winWidth+" height="+winHeight+" border=1><tr><td width=100% valign=top><font type='times' size='2' style='color:black;font-weight:normal'>"+thetext+"</font></td></tr></table>"
			}
	}
	if(ns4){
		thename = "nsviewer"
		theobj = eval("document."+thename)
		winPositionFromTop=window.innerHeight
		winWidth=window.innerWidth
		winHeight=100
			if(theswitch=="override") {
				winWidth=inwidth
				winHeight=inheight
			}
		theobj.moveTo(0,eval(window.pageYOffset+winPositionFromTop))
		theobj.width=winWidth
		theobj.clip.width=winWidth
		theobj.document.write("<table cellspacing=0 width="+winWidth+" height="+winHeight+" border=1><tr><td width=100% valign=top><font type='times' size='2' style='color:black;font-weight:normal'>"+thetext+"</font></td></tr></table>")
		theobj.document.close()
	}
	viewIt()
}

function viewIt() {
	if(startH<winHeight) {
		if(iens6) {
			theobj.style.visibility="visible"
				if(iens6&&document.all) {
//					theobj.style.top=(ietruebody().scrollTop+winPositionFromTop)-startH+"px"
					theobj.style.top=(ietruebody().scrollTop+winPositionFromTop)-winHeight-10
				}
				if(iens6&&!document.all) {
//					theobj.style.top=(window.pageYOffset+winPositionFromTop)-startH+"px"
					theobj.style.top=(window.pageYOffset+winPositionFromTop)-winHeight-10
				}
//			theobj.style.height=startH+"px"
//			theobj.style.height=winHeight
			theobj.style.height=startH
			theobj.style.width=startW
			theobj.style.left=10
			startH+=6
			if (startH>winHeight) startH=winHeight
			openTimer=setTimeout("viewIt()",1)
		}
		if(ns4) {
			theobj.visibility = "visible"
			theobj.moveTo(0,(eval(window.pageYOffset+winPositionFromTop)-startH))
			theobj.height=startH
			theobj.clip.height=(startH)
			startH+=1
			openTimer=setTimeout("viewIt()",1)
		}
	}else{
		if(startW<winWidth) {
			if(iens6) {
				theobj.style.visibility="visible"
					if(iens6&&document.all) {
	//					theobj.style.top=(ietruebody().scrollTop+winPositionFromTop)-startH+"px"
						theobj.style.top=(ietruebody().scrollTop+winPositionFromTop)-winHeight-10
					}
					if(iens6&&!document.all) {
	//					theobj.style.top=(window.pageYOffset+winPositionFromTop)-startH+"px"
						theobj.style.top=(window.pageYOffset+winPositionFromTop)-winHeight-10
					}
	//			theobj.style.height=startH+"px"
	//			theobj.style.height=winHeight
				theobj.style.height=startH
				theobj.style.width=startW
				theobj.style.left=10
				startW+=30
				if (startW>winWidth) startW=winWidth
				openTimer=setTimeout("viewIt()",1)
			}
			if(ns4) {
				theobj.visibility = "visible"
				theobj.moveTo(0,(eval(window.pageYOffset+winPositionFromTop)-startH))
				theobj.height=startH
				theobj.clip.height=(startH)
				startW+=1
				openTimer=setTimeout("viewIt()",1)
			}
		}
		else{
		clearTimeout(openTimer)
		}
	}
}

function stopIt() {
	if(iens6) {
		theobj.innerHTML = ""
		theobj.style.visibility="hidden"
		startH=2
		startW=20
	}
	if(ns4) {
		theobj.document.write("")
		theobj.document.close()
		theobj.visibility="hidden"
		theobj.width=0
		theobj.height=0
		theobj.clip.width=0
		theobj.clip.height=0
	}
}
<!--END GLOBAL FUNCTIONS-->

if (iens6){
//document.write("<div id='viewer' style='background-color:#FFFFCC;visibility:hidden;position:absolute;left:0;width:0;height:0;z-index:1;overflow:hidden;border:0px ridge white'></div>")
document.write("<div id='viewer' style='background-image:url(include/picture/tlo/tlo.jpg);visibility:hidden;position:absolute;left:0;width:0;height:0;z-index:1;overflow:hidden;border:0px ridge white'></div>")
}
if (ns4){
	hideobj = eval("document.nsviewer")
	hideobj.visibility="hidden"
}

