function showConfigBox(theHeadLine, theConfigModule, TopVisible)
    {
        
	var theObject = document.getElementById(theConfigModule);
        var coors = findPos(theHeadLine);
	
	if (TopVisible) {
	        theObject.style.top = (coors[1] + theHeadLine.offsetHeight) + 'px';
        	theObject.style.left = (coors[0] + (theHeadLine.offsetWidth - parseInt(theObject.style.width))) + 'px';
	}
	else {
	        theObject.style.top = coors[1] + 'px';
        	theObject.style.left = (coors[0] + (theHeadLine.offsetWidth - parseInt(theObject.style.width))) + 'px';	
	}
        

        theObject.style.display = "inline";
    }


    function hideConfigBox(theConfigModule)
    {

	var theObject = document.getElementById(theConfigModule);
        theObject.style.display = "none";
    }


    function showMe(theObject)
    {
	theObject.style.display = "inline";
    }


    function hideMe(theObject)
    {
	theObject.style.display = "none";
    }

    
    function findPos(obj) 
    {
	    var curleft = curtop = 0;
	    if (obj.offsetParent) {
		    curleft = obj.offsetLeft
		    curtop = obj.offsetTop
		    while (obj = obj.offsetParent) {
			    curleft += obj.offsetLeft
			    curtop += obj.offsetTop
		    }
	    }
	    return [curleft,curtop];
    }