function tauschen()
{
  neu_url = self.location.search;
    anker = self.location.search.indexOf('?');
    if(neu_url.length > 0)
       if (anker == -1)
          self.Hauptframe.location.href = neu_url.substring(1,neu_url.length);
       else
        self.Hauptframe.location.href = neu_url.substring(anker+1,neu_url.length);
}

function zeigeBild(dasBild) {
	myWindow = window.open("", "","resizable=0,scrollbars=0,status=0,toolbar=0,width=640,height=480");
	myWindow.document.open();
	myWindow.document.write("<HTML><HEAD><TITLE>Schwimmclub Regensdorf<\/TITLE>\n");
	myWindow.document.write("<\/HEAD><BODY LEFTMARGIN=0 TOPMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0 BGCOLOR=\"#FFFFFF\">");
	myWindow.document.write("<A HREF=\"javascript:window.close();\"><IMG SRC=\"images/" + dasBild + ".jpg\" WIDTH=640 HEIGHT=480 BORDER=0><\/A>");
	myWindow.document.write("<\/BODY><\/HTML>");
	myWindow.document.close();
	myWindow.focus();
}


function click(evt) {
  if (navigator.appName.indexOf("Microsoft") != -1)
  {
        if (event.button==2) 
        {
           alert('Copyright © 2003  -  Schwarzbuntes Niederungsrind  ');
           return false
        };
   };
   if (navigator.appName.indexOf("Netscape") != -1) 
   {
      if ( evt.which == 3 ) 
      {
         alert('Copyright © 2003  -  Schwarzbuntes Niederungsrind  ');
         return false
      };
    };
};

if (navigator.appName.indexOf("Netscape") != -1) 
{
  document.captureEvents( Event.MOUSEDOWN )
};
document.onmousedown = click;

