/*
	COPYRIGHT:
	FRANK GEBHARD
	CPEACH - INTERNET SERVICE
	KASTANIENALLEE 40

	38104 BRAUNSCHWEIG, GERMANY
	info@cpeach.de
*/

	function activeFunction( ){
	}

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

    function gotoLoc(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){
    	document.getElementById('subtitles').style.visibility="visible";
    }

    function waiting(objID, funcID, timeVar){
    	window.setTimeout(objID,5000);
    }