//<!--


function  ietruebody()
{
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function ddrivetbigshow(thetext, thecolor, thewidth){
	if (ns6||ie){
	if (typeof thewidth!="undefined")  tbigshowobj.style.width=thewidth+"px"
	if (typeof thecolor!="undefined" && thecolor!="") tbigshowobj.style.backgroundColor=thecolor
	tbigshowobj.innerHTML=thetext
	enabletbigshow=true
	return false
	}
}

function positiontbigshow(e){
	if (enabletbigshow){
	var curX=(ns6)?e.pageX :  event.x+ietruebody().scrollLeft;
	var curY=(ns6)?e.pageY : event.y+ietruebody().scrollTop;

	var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint :  window.innerWidth-e.clientX-	offsetxpoint-20
	var bottomedge=ie&&!window.opera?  ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-	e.clientY-offsetypoint-20

	var  leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000

	if (rightedge<tbigshowobj.offsetWidth)
	tbigshowobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tbigshowobj.offsetWidth+"px" :  window.pageXOffset+e.clientX-	tbigshowobj.offsetWidth+"px"
	else if (curX<leftedge)
	tbigshowobj.style.left="5px"
	else

	tbigshowobj.style.left=curX+offsetxpoint+"px"

	if (bottomedge<tbigshowobj.offsetHeight)
	tbigshowobj.style.top=ie?  ietruebody().scrollTop+event.clientY-tbigshowobj.offsetHeight-offsetypoint+"px" :  	window.pageYOffset+e.clientY-tbigshowobj.offsetHeight-offsetypoint+"px"
	else
	tbigshowobj.style.top=curY+offsetypoint+"px"
	tbigshowobj.style.visibility="visible"
	}
}

function hideddrivetbigshow(){
	if (ns6||ie){
	enabletbigshow=false
	tbigshowobj.style.visibility="hidden"
	tbigshowobj.style.left="-1000px"
	tbigshowobj.style.backgroundColor=''
	tbigshowobj.style.width=''
	}
}

document.onmousemove=positiontbigshow
//-->

