/*
COPYRIGHT:
FRANK GEBHARD
CPEACH - INTERNETDIENSTLEISTUNGEN
FASANENSTRASSE 68
38102 BRAUNSCHWEIG, GERMANY
info@cpeach.de
*/
    function activeFunction( )
    	{

        }

    function changeFontColor(objID)
    	{
            objButton = document.getElementById(objID);
            objButton.style.color= "#9F0000";
        }

    function goto(objID)
    	{
        	window.location.href=objID;
        }

    function hideDiv(objID)
        {
            objDiv = document.getElementById(objID);
            objDiv.style.visibility="hidden";
        }
    function reChangeFontColor(objID)
    	{
            objButton = document.getElementById(objID);
            objButton.style.color= "#A3BAA9";
        }

    function showDiv(objID)
        {
         	objDiv = document.getElementById(objID);
            objDiv.style.visibility="visible";
        }


    function waiting(objID, funcID, timeVar)
    	{
           //alert(objID);
           //var funcObj=
           window.setTimeout(objID,5000);

        }