 <!-- Browser Check -->
iens6=document.all||document.getElementById
ns4=document.layers
<!--GLOBAL VARIABLES-->
var thename
var theobj

var thetext
var winHeight
var winPositionFromTop
var winWidth
var startH=0
var openTimer

<!--END GLOBAL VARIABLES-->
<!--DEFINE MOUSEOVER CONTENT-->
var textArray = new Array
textArray[1]="<a href='http://www.payvision.com' target='_blank'><img src='images/messenger_popup.gif' border='0'></a>"

<!--END DEFINE MOUSEOVER CONTENT-->
<!--GLOBAL FUNCTIONS-->
function setObj(elementpos,theswitch,inwidth,inheight,isFirstVisit) {
	if (isFirstVisit < 1)
	{

		thetext=textArray[elementpos]
		if(iens6){
			thename = "viewer"
			theobj=document.getElementById? document.getElementById(thename):document.all.thename
			winHeight=100
				if(iens6&&document.all) {
					winPositionFromTop=document.body.clientHeight
					winWidth=(document.body.clientWidth-document.body.leftMargin)
				}
				if(iens6&&!document.all) {
					winPositionFromTop=window.innerHeight
					winWidth=(window.innerWidth-(document.body.offsetLeft+20))
				}
				if(theswitch=="override") {
					winWidth=inwidth
					winHeight=inheight
				}
				
			theobj.style.width=winWidth
			theobj.style.height=startH

			//strBody = "<table cellspacing=0 width="+winWidth+" height="+winHeight+" border=0><tr><td align=left valign=top width=100%>"+thetext+"</td></tr></table>"
			//alert(strBody)
				if(iens6&&document.all) {
					theobj.style.top=document.body.scrollTop+winPositionFromTop
					theobj.style.left=50
					theobj.innerHTML = ""
					theobj.insertAdjacentHTML("BeforeEnd", thetext)
				}
				
				if(iens6&&!document.all) {
					theobj.style.top=window.pageYOffset+winPositionFromTop
					theobj.innerHTML = ""
					theobj.innerHTML= thetext
				}
		}
		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=0><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=(document.body.scrollTop+winPositionFromTop)-startH
				}
				if(iens6&&!document.all) {
					theobj.style.top=(window.pageYOffset+winPositionFromTop)-startH
				}
			theobj.style.height=startH
			startH+=2
			
			openTimer=setTimeout("viewIt()",2)
		
		}
		if(ns4) {
			theobj.visibility = "visible"
			theobj.moveTo(0,(eval(window.pageYOffset+winPositionFromTop)-startH))
			theobj.height=startH
			theobj.clip.height=(startH)
			startH+=2
			openTimer=setTimeout("viewIt()",7000)
		}
	}else{
		openTimer=setTimeout("stopIt()",7000)
	}
}

function stopIt() {
	if(iens6) {
		theobj.innerHTML = ""
		theobj.style.visibility="hidden"
		startH=2
	}
	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
		startH=2
	}
}

function PosTop()
{
	if (document.all["viewer"] != null)
	{
		document.all["viewer"].style.top = document.body.clientHeight - 120 + document.body.scrollTop
	}	

}