if (document.all)
{
}
else 
    document.captureEvents(Event.MOUSEMOVE);
document.onmousemove=MouseTrack;

function MouseTrack(e) 
{
	var lhs = (document.body.offsetWidth - 1000) / 2;
	var xcurs = 0;
	var ycurs = 0;

	if (navigator.appName == 'Netscape')
	{
		xcurs = e.pageX;
		ycurs = e.pageY;
	} 
	else 
	{
		xcurs = event.clientX;
		ycurs = event.clientY;
	}

    var Object = document.getElementById("d");
    var IframeObject = document.getElementById("i");

	if (CurrentTitle == "")
	{
	    Object.style.display = "none";
	    IframeObject.style.display = "none";
	    return;
	}
	
    IframeObject.style.display = "";
    Object.style.display = "";
	if (CurrentTitle == "<b>&#x05D4;&#x05D0;&#x05D5;&#x05EA; &#x05D6;&#x05DE;&#x05D9;&#x05E0;&#x05D4; &#x05DC;&#x05E8;&#x05DB;&#x05D9;&#x05E9;&#x05D4;.<br />&#x05E2;&#x05DC;&#x05D5;&#x05EA; &#x05D4;&#x05D0;&#x05D5;&#x05EA; 18 &#x05E9;&quot;&#x05D7;.<br />&#x05DC;&#x05D7;&#x05E5; &#x05E2;&#x05DC; &#x05D4;&#x05D0;&#x05D5;&#x05EA; &#x05DC;&#x05D1;&#x05D9;&#x05E6;&#x05D5;&#x05E2; &#x05D4;&#x05E8;&#x05DB;&#x05D9;&#x05E9;&#x05D4;.</b>")
	    Object.style.backgroundColor = "#EDC41C";
	else
	    Object.style.backgroundColor = "White";
	Object.innerHTML = CurrentTitle;
	
	var Top = ycurs + document.body.scrollTop - 5;
	var Left = xcurs - 15 + document.body.scrollLeft - 200;
	
	if (Object.innerHTML.length > 1000)
    {
        Object.style.width = 600;
        Left -= 400;
    }
    else
    {
        Object.style.width = 202;
    }
    
	IframeObject.style.top = Top;
    IframeObject.style.left = Left;
    IframeObject.style.width = Object.offsetWidth;
    IframeObject.style.height = Object.offsetHeight;
    
    Object.style.top = Top;
    Object.style.left = Left;
        
	Object.style.zIndex = 101;
	IframeObject.style.zIndex = 100;
}

var CurrentTitle = "";
function S(Object) 
{
	if (!Object.tag)
	    CurrentTitle = "";
	else if (Object.tag == ".")
	    CurrentTitle = "<b>&#x05D4;&#x05D0;&#x05D5;&#x05EA; &#x05D6;&#x05DE;&#x05D9;&#x05E0;&#x05D4; &#x05DC;&#x05E8;&#x05DB;&#x05D9;&#x05E9;&#x05D4;.<br />&#x05E2;&#x05DC;&#x05D5;&#x05EA; &#x05D4;&#x05D0;&#x05D5;&#x05EA; 18 &#x05E9;&quot;&#x05D7;.<br />&#x05DC;&#x05D7;&#x05E5; &#x05E2;&#x05DC; &#x05D4;&#x05D0;&#x05D5;&#x05EA; &#x05DC;&#x05D1;&#x05D9;&#x05E6;&#x05D5;&#x05E2; &#x05D4;&#x05E8;&#x05DB;&#x05D9;&#x05E9;&#x05D4;.</b>";
	else
	    CurrentTitle = Object.tag;
}

function R() 
{
	CurrentTitle = "";
}
