//
// Napoveda k parametrmu
//


var ie,nn6
if (document.all)
    ie = 1;
if (!document.all && document.getElementById)
    nn6 = 1;

var obj;
function helpShow(id, text, action)
{
    if (!ie && !nn6)
	    return;

    if(ie){
			obj	= document.all.helpBox;
    }
    if(nn6){
	    obj	= document.getElementById('helpBox');
    }

		obj.innerHTML = text;
		getPosition();
    obj.style.visibility = 'visible';
}

function getPosition()
{

    if (ie){
    	x = window.event.clientX + 5 +document.body.scrollLeft;
			y = window.event.clientY + 15 +document.body.scrollTop;
    }
    if (nn6){
			x=e.pageX - 15;
			y=e.pageY + 20;
    }
    
		obj.style.top  = y
    obj.style.left = x
}

function helpHide()
{
    if (!ie && !nn6)
			 return

    obj.style.visibility = 'hidden';
}

document.write('<div id="helpBox" class="helpBoxStyle" style=""></DIV>');

