//erzwungener Reload fuer Netscape 4
NS4 = document.layers;
if (NS4) {
origWidth = innerWidth;
origHeight = innerHeight;    }
function reDo() {
if (innerWidth != origWidth || innerHeight != origHeight) 
location.reload();  }
if (NS4) onresize = reDo;

//Seite empfehlen
function openform(url) {
var url = url + "?url=" + document.location
	window.open(url,"","scrollbars=no,menubar=no,personalbar=no,width=500,height=300,left=220,top=0");
}

//DropDown Navigation

function Nav(x)
{
 if(x == "nix")
 {
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   top.focus();
   return;
 }
 else
  {
   top.location.href = x;
   document.forms[0].reset();
   document.forms[0].elements[0].blur();
   top.focus();
  }
}
