<!--
var url
var breite =0
var hoehe =0

function openWin(url, breite, hoehe) {
var
n=open(url,'new','width='+breite+' ,height='+hoehe+' ,left=50,top=30, menubar=no, SCROLLBAR=no,resizable=no');
}

function fenster(theURL,winName,features)
{window.open(theURL,winName,features);}

function schicken(val)
{
  document.getElementById('feld').value = val
  document.getElementById('form').submit()
}

function doppelschick(val,val1)
{
  document.getElementById('feld').value = val
  document.getElementById('feld1').value = val1
  document.getElementById('form').submit()
}


function showhide(what,what2) {
 if (document.getElementById(what).style.display=='none') {
  document.getElementById(what).style.display='block';
  //what2.src=Open.src;
  document[what2].src="open.gif";
 }
 else {
  document.getElementById(what).style.display='none';
  //what2.src=Closed.src;
  document[what2].src="closed.gif";
}
}

function hide(what,what2) {
  document.getElementById(what).style.display='none';
  //what2.src=Closed.src;
  //document[what2].src="closed.gif";
}

function show(what,what2) {
  document.getElementById(what).style.display='block';
  //what2.src=Open.src;
  //document[what2].src="open.gif";
}

// -->
