// ***********************************************************
// Favicon
// ***********************************************************
document.write('<link rel="shortcut icon" href="http://www.drdecker.de/site/bilder/favicon.ico">')

// ***********************************************************
// Löschen
// ***********************************************************
function nachricht_loeschen(head,id)
  {
    Check = confirm('Die Nachricht ' + head + ' wirklich löschen? \n\n');
    if(Check != false) self.location.href='austrag.php?id=' + id ;
  }

// ***********************************************************
// Vergroesserungen beim Start
// ***********************************************************
  function start_rezeptbestellung(){
                  xPos = (screen.availWidth/2-305);
                  yPos = (screen.availHeight/2-280);

                  setTimeout('window.moveTo(xPos,yPos);',100);
                  setTimeout('window.focus();',100);
                }

  function start_anfahrt(){
                  xPos = (screen.availWidth/2-193);
                  yPos = (screen.availHeight/2-141);

                  setTimeout('window.moveTo(xPos,yPos);',100);
                  setTimeout('window.focus();',100);
                }


// ***********************************************************
// Popup Fenster
// ***********************************************************

function PopUp(loc,b,h,sc)
  {
      PopUpWin =
      window.open(loc, "popup_normal", "width="+b+",height="+h+",scrollbars="+sc);
      PopUpWin.focus();
  }
