
<!--
function DirectView(URL) {
	window.open(URL, '_DirectView', 'resizable=1,scrollbars=1,status=0,width=450,height=350');
}

function lang_view(word) {
	URL = "/lang_view.html?word="+word;
	window.open(URL, '_langView', 'resizable=1,scrollbars=1,status=0,left=100,top=50,width=650,height=350');
}


function showDesc(current,e,text)
{
    if (document.all&&document.readyState=="complete") {
        document.all.Descview.innerHTML='<marquee style="padding:2px;border:1px solid black">'+text+'</marquee>';
        document.all.Descview.style.pixelLeft=event.clientX+document.body.scrollLeft+10;
        document.all.Descview.style.pixelTop=event.clientY+document.body.scrollTop+10;
        document.all.Descview.style.visibility="visible";
    } else if (document.layers) {
        document.Descview.document.DescLayer.document.write('<b>'+text+'</b>');
        document.Descview.document.DescLayer.document.close();
        document.Descview.document.DescLayer.left=0;
        currentscroll=setInterval("scrolltip()",100);
        document.Descview.left=e.pageX+10;
        document.Descview.top=e.pageY+10;
        document.Descview.visibility="show";
    }
}

function hideDesc() {
    if (document.all)
        document.all.Descview.style.visibility="hidden";
    else if (document.layers) {
        clearInterval(currentscroll);
        document.Descview.visibility="hidden";
    }
}



			ns4 = (document.layers)? true:false
			ie4 = (document.all)? true:false
			ns = false

			if (ie4) {
				if (navigator.userAgent.indexOf('MSIE 5')>0 || navigator.userAgent.indexOf('MSIE 6')>0) {
					ie5 = true;
				}
				else {
					ie5 = false;
				}
			}
			else {
				ie5 = false;
			}

			var width = 320;
			var border = "0";
			var offsetx = 4;
			var offsety = 4;
			var fontstyle = "font-size:9pt;";
			var capfontstyle = "font-size:10pt;";
			var snow = 0;
			var x = 0;
			var y = 0;
			var tmpX, tmpY;
			var newWin = null;
			var doc_width=800, doc_height=600;
			var curdiv = 0;

			function mousemove(e) {
				if (ns4) {x=e.pageX; y=e.pageY}
				if (ie4) {x=event.x; y=event.y}
				if (ie5) {x=event.x+document.body.scrollLeft; y=event.y+document.body.scrollTop;}

				tmpX = (doc_width-x-offsetx-width < 0) ? (doc_width-width):(x-offsetx);

				if (curdiv==1) moveTo(over1,tmpX,y+offsety)
else if(curdiv==2) moveTo(over2,tmpX,y+offsety)
else if(curdiv==3) moveTo(over3,tmpX,y+offsety)
else if(curdiv==4) moveTo(over4,tmpX,y+offsety)
else if(curdiv==5) moveTo(over5,tmpX,y+offsety)
else if(curdiv==6) moveTo(over6,tmpX,y+offsety)
else if(curdiv==7) moveTo(over7,tmpX,y+offsety)
else if(curdiv==8) moveTo(over8,tmpX,y+offsety)
else if(curdiv==9) moveTo(over9,tmpX,y+offsety)
else if(curdiv==10) moveTo(over10,tmpX,y+offsety)
else if(curdiv==11) moveTo(over11,tmpX,y+offsety)
else if(curdiv==12) moveTo(over12,tmpX,y+offsety)
else if(curdiv==13) moveTo(over13,tmpX,y+offsety)
else if(curdiv==14) moveTo(over14,tmpX,y+offsety)
else if(curdiv==15) moveTo(over15,tmpX,y+offsety)

			}

			window.document.onmousemove = mousemove;
			if (ns4) document.captureEvents(Event.MOUSEMOVE)

			function ShowToolTip(overDiv) {
				if(ns4) {
					doc_width=self.innerWidth;
					doc_height=self.innerHeight;
				}
				else {
					if(ie4) {
						doc_width=document.body.clientWidth;
						doc_height=document.body.clientHeight;
					}
				}
				moveTo(overDiv,tmpX,y+offsety);
				if (ns4) overDiv.visibility = "show"
				else if (ie4) overDiv.visibility = "visible";
			}

			function HideToolTip(overDiv) {
				if (ns4) overDiv.visibility = "hide"
				else if (ie4) overDiv.visibility = "hidden";
			}

			function 	disp(overDiv) {
				if ( (ns4) || (ie4) ) {
					if (snow == 0) {
						moveTo(overDiv,tmpX,y+offsety);
						showObject(overDiv);
						snow = 1;
					}
				}
			}

			function SetCurrDiv(scd) {
				curdiv = scd;
			}

			function moveTo(obj,xL,yL) {
				obj.left = xL;
				obj.top = yL;
			}

			function nd(overobj) {
				if ( (ns4) || (ie4) ) {
					snow = 0;
					hideObject(overobj);
				}
			}

			function high(which2) {
				if (window.lowlighting) clearInterval(lowlighting);
				if (window.highlighting) clearInterval(highlighting);

				theobject=which2;
				highlighting=setInterval("highlightit(theobject )",50);
			}

			function low(which2) {
				if (window.lowlighting) clearInterval(lowlighting);
				if (window.highlighting) clearInterval(highlighting);

				theobject=which2;
				lowlighting=setInterval("lowlightit(theobject )",50);
			}

			function highlightit(cur2) {
				if (cur2.filters.alpha.opacity<85) cur2.filters.alpha.opacity+=3;
			}

			function lowlightit(cur2) {
				try {
					if (cur2.filters.alpha.opacity>=40) cur2.filters.alpha.opacity-=10;

					if (cur2.filters.alpha.opacity<45) {
						if (lowlighting) clearInterval(highlighting);
						if (highlighting) clearInterval(highlighting);
						nd(cur2);
					}
				}
				catch (e) {
					nd(cur2);
				}
			}

			function showObject(obj) {
				if (ns4) obj.visibility = "show"
				else if (ie4) obj.visibility = "visible";
			}

			function hideObject(obj) {
				if (ns4) obj.visibility = "hide"
				else if (ie4) obj.visibility = "hidden";
			}

// -->


