<!--

/* FORMTEST */

function testen() 

{
missinginfo = "";
if (document.mailform.sender.value == "Ihr Name") {
missinginfo += "\n     -  Ihr Name";
}
if ((document.mailform.email.value == "") || 
(document.mailform.email.value.indexOf('@') == -1) || 
(document.mailform.email.value.indexOf('.') == -1)) {
missinginfo += "\n     -  Ihre E-Mail-Adresse";
}
if (document.mailform.message.value == "Ihre Nachricht") {
missinginfo += "\n     -  Eine Nachricht";
}

if (missinginfo != "") {
missinginfo ="_______________________\n" +
"Bitte eingeben:\n" +
missinginfo + "\n_______________________" +
"\nDanke!";
alert(missinginfo);
return false;
}
else return true;
}
;



/* POPUP */

function popup(hier) 

{
var SpeedVertikal = 100; // speed -Height
var SpeedHorizonzal = 100;  // speed -Breite
var AbstandLinks = 100;    // Abstand links
var AbstandOben = 5;     // Abstand oben

var winwidth = 1010 + AbstandLinks;
var winheight = 650+ AbstandOben;
var buildIt = window.open("","Pop1","left=" + AbstandLinks + ",top=" + AbstandOben + ",width=1,height=1,location=no,resizable=1,toolbar=0,menubar=0,status=0,directories=0,scrollbars=1");
for (sizeheight = 1; sizeheight < winheight; sizeheight += SpeedVertikal) {
buildIt.resizeTo("1", sizeheight);
}
for (sizewidth = 1; sizewidth < winwidth; sizewidth += SpeedHorizonzal) {
buildIt.resizeTo(sizewidth, sizeheight);
}
buildIt.location = hier;
}
;


/* SELECTOR */

function go(auswahl)

{
if(auswahl == "nothing")
	{
	document.forms[0].reset();
	return;
	}

else if(auswahl == "Impressum")
	{
	popup('#')
	}


else
	{
	parent.location.href = auswahl;
	}

}
;


// -->
