<!--
function Getstats() {
window.status=('Anmeldung User-Bereich.')
var AccId;
var iName;
AccId = document.iAccInput.iAccID.value
iName = document.iAccInput.iName.value
if (AccId == "" || iName == "")
{ 
location('index.html'); 
} 
else
{
var location=(iName + AccId + ".html");
this.location.href = location;
window.status=('   Verifying:  ' + iName + '-' + AccId + '  Bitte warten........');
}
}
function Verifyacc2() {
window.status=('Bitte geben Sie Usernamen und Passwort ein...');
var oName = prompt("Bitte geben Sie Ihren Usernamen ein:\n", "")
window.status=('   UserName = ' + oName);  
var oAccID = prompt("Bitte geben Sie Ihr Passwort ein:\n", "")
window.status=('   Account ID = ' + oAccID); 
if (oAccID == "" || oName == "" || oAccID == "null" || oName == "null") 
{
location('index.html'); 
}
else	{
window.status=('   Pruefe:  ' + oName + '-' + oAccID + ' Bitte warten........');
var location=(oName + oAccID + ".html");
this.location.href = location;
}
}
//-->