function Link(ausgabe){
	window.status = ausgabe;
}
function anbieter(url){
	window.open("url");
}
   //Created / Generates the captcha function    
function DrawCaptcha()
    {       
	var a = Math.ceil(Math.random() * 10)+' ';
        var b = Math.ceil(Math.random() * 10)+' ';       
        var c = Math.ceil(Math.random() * 10)+' ';  
        var d = Math.ceil(Math.random() * 10)+' ';  
        var e = Math.ceil(Math.random() * 10)+' ';  
        var f = Math.ceil(Math.random() * 10)+' ';  
        var g = Math.ceil(Math.random() * 10)+' ';  
        var code = a + b +  c + d + e + f + g;
        document.getElementById("txtCaptcha99").value = code
    }
    // Validate the Entered input aganist the generated security code function   
    function ValidCaptcha(){
        var str1 = removeSpaces(document.getElementById('txtCaptcha99').value);
        var str2 = removeSpaces(document.getElementById('txtInputxzzz').value);
        if (str1 != str2) {
		
			alert ("Bitte den Sicherheitscode eingeben!!!");
		
	} else {
		document.forms["kommentar"].submit();
	}
    }

    // Remove the spaces from the entered and generated code
    function removeSpaces(string)
    {
        return string.split(' ').join('');
    }
    function removeTitel(string)
    {
        return string.split('Titel').join('');
    }
    function removeKommentar(string)
    {
        return string.split('Kommentar').join('');
    }

