//
// browsercheck
if (document.layers) { browser = "nc"; }
if (document.all) { browser = "ie"; }
if (document.getElementById) { browser = "dom"; }

//
// new window
function neu(seite,breite,hoehe)
{
	var screenwidth = (screen.width/2)-(breite/2);
	var screenheight = (screen.height/2)-(hoehe/2);
	var attributes = "width="+ breite +",height="+ hoehe +",left="+ screenwidth +",top="+ screenheight +",screenX="+ screenheight +",screenY="+ screenwidth +",dependent=yes,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no";
	var neu = window.open(seite,"neu",attributes);
}
//
// new window 2
function neu_all(seite,breite,hoehe)
{
	var screenwidth = (screen.width/2)-(breite/2);
	var screenheight = (screen.height/2)-(hoehe/2);
	var attributes = "width="+ breite +",height="+ hoehe +",left="+ screenwidth +",top="+ screenheight +",screenX="+ screenheight +",screenY="+ screenwidth +",dependent=yes,location=yes,menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes";
	var neu = window.open(seite,"neu",attributes);
}

// 
// formular senden
function senden (formularname)
{
	eval ("document." + formularname + ".submit();");
}