function printFilecontent(dieSeite,responseTo){var req=null;try{req=new XMLHttpRequest();}
catch(ms){try{req=new ActiveXObject("Msxml2.XMLHTTP");}
catch(nonms){try{req=new ActiveXObject("Microsoft.XMLHTTP");}
catch(failed){req=null;}}}
if(req==null)
alert("Ajax Fehler req=Null");req.open("GET",dieSeite,true);req.onreadystatechange=function(){switch(req.readyState){case 4:if(req.status!=200){alert("Ajax-Fehler! Errcode: "+req.status);}else{document.getElementById(responseTo).innerHTML=req.responseText;}
break;default:return false;break;}};req.setRequestHeader("Content-Type","application/x-www-form-urlencoded");req.send(null);}
function reload(){document.getElementById('captcha').src='captcha/captcha.php?'+Math.random();}