

function cursorOnPicture(event,id)
{
//For Mozzila Firefox do not show the text
    if (explorertype!=0)
    {
        document.getElementById(id).style.visibility="visible";
        document.getElementById(id).style.position="absolute";
        document.getElementById(id).style.left=event.clientX+22;
        document.getElementById(id).style.top=event.clientY+document.body.scrollTop+5;

        last_SMALL_PIC_Y=event.clientY+document.body.scrollTop;
        last_SMALL_PIC_X=event.clientX;
        last_SCROLL_PIC=document.body.scrollTop;
    }
}

function cursorOnPictureHide(id)
{
    document.getElementById(id).style.visibility="hidden";
}
