		function findPosX(obj)
		{
			var curleft = 0;
			if (obj.offsetParent)
			{
				while (obj.offsetParent)
				{
					curleft += obj.offsetLeft
					obj = obj.offsetParent;
				}
			}
			else if (obj.x)
				curleft += obj.x;
			return curleft;
		}
		
		function findPosY(obj)
		{
			var curtop = 0;
			if (obj.offsetParent)
			{
				while (obj.offsetParent)
				{
					curtop += obj.offsetTop
					obj = obj.offsetParent;
				}
			}
			else if (obj.y)
				curtop += obj.y;
			return curtop;
		}
		
		function Show(obj,x,y,offx,offy) {
			if (document.all) {
				document.all[obj].style.display='block'; 
				document.all[obj].style.top = y-offy; 
				document.all[obj].style.left = x-offx;			
			}
			else {
				document.getElementById(obj).style.display='block'; 
				a = x - offx + 'px';
				b = y - offy - 61 + 'px';
				document.getElementById(obj).style.top = b; 
				document.getElementById(obj).style.left = a;
				
			}		
		}		
		
		function ShowService(obj,x,y,offx,offy) {
			if (document.all) {
				document.all[obj].style.display='block'; 
				document.all[obj].style.top = y-offy; 
				document.all[obj].style.left = x-offx;			
			}
			else {
				document.getElementById(obj).style.display='block'; 
				a = x - offx + 'px';
				b = y - offy - 21 + 'px';
				document.getElementById(obj).style.top = b; 
				document.getElementById(obj).style.left = a;
				
			}		
		}				

		function ShowDict(x,y) {
			if (document.all) {
				width = document.body.scrollWidth;
				center = width/2 + 385;
				document.all['dict'].style.display='block'; 
				document.all['dict'].style.top = 45; 
				document.all['dict'].style.left = center-338;			
			}
			else {
				document.getElementById('dict').style.display='block'; 
				a = x + 430 + 'px';
				document.getElementById('dict').style.top = 45; 
				document.getElementById('dict').style.left = a;
				
			}		
		}

		function Hide(obj) {
			if (document.all) {
				document.all[obj].style.display='none'; 
			}
			else {
				document.getElementById(obj).style.display='none'; 
			}		
		}	