<!--
function back_print(evt)
{
   var taste;
   window.status='TIMS: Bitte aus dem Haupt- oder Untermenü wählen...';
   if (navigator.appName.indexOf("Microsoft") != -1)
   {
      if (event.button==2)
      {
         window.status='TIMS: Bitte Option aus Explorer-Box auswählen...';
         taste=confirm('MS Internet-Explorer bietet TIMS Optionen: \n \n    1. Taste OK          = Eine Seite zurück blättern \n    2. Taste Abbruch = Seite ausdrucken bzw. Abbruch \n \n Bitte wählen Sie eine Taste aus:');
         if (taste==true)                                                                                                   
         {                   
            history.back(-1);
            window.status='TIMS: Bitte aus dem Haupt- oder Untermenü wählen...';
         }                   
         else                
         {                   
            print();
            window.status='TIMS: Bitte aus dem Haupt- oder Untermenü wählen...';
         }
      };
      return false;
   };
   if (navigator.appName.indexOf("Netscape") != -1)
   {
      if ( evt.which == 3 ) 
      {
         window.status='TIMS: Bitte Option aus NetScape-Box auswählen...';
         taste=confirm('Netscape bietet TIMS Optionen: \n \n    1. Taste OK          = Eine Seite zurück blättern \n    2. Taste Abbruch = Seite ausdrucken bzw. Abbruch \n \n Bitte wählen Sie eine Taste aus: ');
         if (taste==true)
         {
            history.back(-1);
            window.status='TIMS: Bitte aus dem Haupt- oder Untermenü wählen...';
         }
         else
         {
            print();
            window.status='TIMS: Bitte aus dem Haupt- oder Untermenü wählen...';
         }
         return false
      };
   };
};
if (navigator.appName.indexOf("Netscape") != -1)
{
   document.captureEvents( Event.MOUSEDOWN )
};
document.onmousedown = back_print;
// -->



