
<!-- Begin
function Login(){
var done=0;
var func = "";
var plz = "";



if (plz=document.login.plz.value == "") {
alert ("\nBitte geben Sie die ersten 2 Stellen Ihrer PLZ an.")
return false;
}

var func=document.login.func.value;
func=func.toLowerCase();
var plz=document.login.plz.value;
plz=plz.toLowerCase();

// gastlogin
if (func=="gast" && plz=="xyz")
{

// feste Zieldatei
window.location="gastseite.htm";

// zusammengesetzter Dateiname
// window.location="gast-login.htm";


done=1;
}
else
{



// andere logins
zusammengesetzt = func + "hadef_" + plz;

url = zusammengesetzt;
url += ".html";



// Default - Standard
this.window.location = url;

// Alternativ gesamter Frameset wird ersetzt
// top.location = url;

// Alternativ bestimmter Frame wird ersetzt
// top.NameDesFrames.location.href = mainframe;


return;
}

if (done==0) { alert("Invalid login!"); }

}

// End -->
