function form_submit(i,j,k)
{
  if (i==null) i="0";
  if (j==null) j="0";
  if (k==null) k="0";
  document.vdb.ACTION.value=i;
  document.vdb.PARAM.value=j;
  document.vdb.PARAM2.value=k;
  document.vdb.submit();
}

function selectLoeschen()
{
  max = document.vdb.ort.options.length-1;
  for (j=max;j>=0;j--)
  {
    document.vdb.ort.options[j] = null;
  }
}

function selectSchreiben()
{
  selectLoeschen()
  document.vdb.ort.options[0] = new Option('Alle Orte',-1);

  for (i=0;i<ortschaft.length;i++)
  {
    if(document.vdb.region.value == ortschaft[i]['id'] || document.vdb.region.value == -1)
    {
      for (j=0;j<ortschaft[i]['orte'].length;j++)
      {
        document.vdb.ort.options[document.vdb.ort.options.length] = new Option(ortschaft[i]['orte'][j]['stadt'],ortschaft[i]['orte'][j]['id']);
      }
    }
  }
}

function o_window(url,name,wid,hei) {
  if (  url=='' ) {  alert('Keine Ziel-URL angegeben!');   return; }
  if ( name=='' ) {  alert('Kein Fenstername angegeben!'); return; }
  win = window.open(url,name,"dependent=1,scrollbars=0,resizable=1,width="+wid+",height="+hei);
  win.location=url;
  win.focus();
}
