if(top!=self)
top.location=self.location;

function GotoURL()
{
i = document.SelectURL.picker.options.selectedIndex;
x = document.SelectURL.picker.options[i].value;
if(x == "nothing")
 {
 document.forms[0].reset();
 document.forms[0].elements[0].blur();
 return;
 }
else
 {
 top.location.href = x
 document.forms[0].reset();
 document.forms[0].elements[0].blur();
 }
}

function fensterauf(URL)
{
 InfoFenster = window.open(URL,'InfoFenster',"width=400px,height=500px,dependent=yes,scrollbars,resizable=1");
 InfoFenster.focus()
}

