function ShowTip(fArg)
{
        var tooltipOBJ = (document.getElementById) ? document.getElementById('tt-' + fArg) : ((document.all) ? document.all("tt-" + fArg) : null);

//	window.alert("Tooltip fuer "+fArg+ " "+tooltipOBJ);
        if (tooltipOBJ != null) {
                var tooltipLft = 300;
                var tooltipTop = 200;
                if (navigator.appName == 'Netscape') {
                        if (parseFloat(navigator.appVersion) >= 5) { 
                              tooltipTop = document.body.scrollTop+tooltipTop;
                        }
                        tooltipOBJ.style.left = tooltipLft+"px"; 
                        tooltipOBJ.style.top = tooltipTop+"px";
                } else {
                        tooltipTop = event.clientY+10;
                        tooltipOBJ.style.pixelLeft = tooltipLft; 
                        tooltipOBJ.style.pixelTop = tooltipTop;
                }
                tooltipOBJ.style.visibility = "visible";
        } 
}

function HideTip(fArg)
{
        var tooltipOBJ;
        if (fArg >0) {
                tooltipOBJ = (document.getElementById) ? document.getElementById('tt-' + fArg ) : eval("document.all['tt-" + fArg + "']");
                if (tooltipOBJ != null) {
                        tooltipOBJ.style.visibility = "hidden";
                }
        } else {
                for (i=0;i<50;i++) { 
                        tooltipOBJ = (document.getElementById) ? document.getElementById('tt-' + i ) : eval("document.all['tt-" + i + "']");
                        if (tooltipOBJ != null) {
//				window.alert("Tooltip fuer "+fArg+ " "+tooltipOBJ);
                                tooltipOBJ.style.visibility = "hidden";
                        }       
                }
        }
}

function clc(el,p,pos) {
        var e = window.encodeURIComponent ? encodeURIComponent : escape;
        el.href="http://www.clewwa.de/url?p="+e(p)+"&pos="+e(pos)+"&url="+e(el.href).replace(/\+/g,"%2B");
        el.onmousedown="";
        return true;
}
