function CopyToClipboard(textcontrol) 
{
    if (document.getElementById(textcontrol) != null) 
    {
        var ie = !!document.all;

        if (ie) 
        {
            // Der IE kann es
            if(window.clipboardData && clipboardData.setData) {
        	
        	    clipboardData.setData("Text", document.getElementById(textcontrol).value);
        	}
        }
        else {
            // Der Firefox erlaubt es aus Sicherheitsgründen nicht mehr.
            alert("Leider unterstützt Ihr Browser diese Funktion nicht! Markieren Sie den Text und benutzen Sie die Funktion 'kopieren' Ihres Browsers.");
        }
    }
}

function ScrollToAnchor(id) {
    setTimeout("JumpTpAnchor('" + id + "')", 500);
    
}

function JumpTpAnchor(id) {
    top.location.hash = '#' + id;
}
