
<!-- saved from url=http://www.dessau-alten.de -->

function popUp(URL,breite,hoehe)
{
  ok = window.open(URL,'_blank','toolbar=0, WIDTH=' + breite + ' HEIGHT=' + hoehe + ', location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0')
  
   if (ok) return false;
  else return true; 
}

function popmin(URL,breite,hoehe)
{
  ok = window.open(URL,'_blank','toolbar=0, WIDTH=' + breite + ' HEIGHT=' + hoehe + ', location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,copyhistory=0')
  
 window.setTimeout("ok.top.close()", 4000); 

   if (ok) return false;
  else return true; 
}

function popmax(URL,breite,hoehe)
{
  ok = window.open(URL,'_blank','toolbar=0, WIDTH=' + breite + ' HEIGHT=' + hoehe + ', location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,copyhistory=0')

  
  if (ok) return false;
  else return true;
}

