<!--
var newwin;
var ns4 = (document.layers) ? 1 : 0;
var ie4 = (document.all) ? 1 : 0;
var ns6 = (document.getElementById && !document.all) ? 1 : 0;

function winWid()
{
var widClt;
widClt = window.screen.width;
if(ns6) widClt = window.innerWidth;
var widInt = parseInt(widClt);
var urlString = "lr";
if(widInt > 850)
   {
   urlString = "hr";
   }
return urlString;
}

function popup(url,name,eigenschaften,hoehe,breite)
    {
	var einstellung = eigenschaften + hoehe + breite;
	var h = hoehe.substring(7, hoehe.length - 1);
	h *= 1;
	h += "";
	var b = breite.substring(6, breite.length);
	b *= 1;
	b += "";
	if(version > 1.1)
        {
    newwin = window.open(url,name,einstellung);
	newwin.resizeTo(b, h);
        }
	else
        {
    newwin = window.open(url,name,einstellung);
        }
    if(version > 1.0)
        {
        setTimeout('newwin.focus();',200);
        }
    }

function delete_check()
{
if (confirm("Wollen Sie die Eingaben tatsächlich löschen?"))
{
return true;
}
else return false;
}

function delete_check_en()
{
if (confirm("Do you really want to delete all entries?"))
{
return true;
}
else return false;
}

//-->

