Avalon: Script für mehrere Links unmöglich!?

Beitrag lesen

Grausamer Code, habe mal alles rausgeschmissen was da nicht hingehört, nur die Tabelle habe ich wegen eigener Faulheit mal gelassen.
Änderungen bzgl. Deiner Frage habe ich Kenntlich gemacht durch entfernen der Kommentierung.
Doctype usw. kannst Du ja selber noch einfügen, ebenso die Formatierung mit CSS.

<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">

Wer arbeitet denn mit Frontpage? Das solltest Du Dir schnell abgewöhnen, daher auch der schlechte Code.

<title>A-Jugend_Team</title>
<base target="_self">

<style type="text/css">
<!--
a:link { text-decoration:none; color:#000000; }
a:visited { text-decoration:none; color:#000000; }
a:hover { text-decoration:none; text-decoration:underline; color="#000000"}
a:active { text-decoration:none; color:#000000; }
-->
</style>

<script>
function winopen(popUpURL)
{

var popUpSizeX=640;
var popUpSizeY=480;

var popUpLocationX=100;
var popUpLocationY=200;

splashWin = window.open("",'x','fullscreen=1,toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=yes,resizable=0');

splashWin.blur();
window.focus();

splashWin.resizeTo(popUpSizeX,popUpSizeY);
splashWin.moveTo(popUpLocationX,popUpLocationY);
splashWin.location=popUpURL;
splashWin.focus();
}
</script>

</head>

<body>

<p>Teamvorstellung
<a href="a-jgd_quali.htm">Qualifikation</a>
<a href="a-jgd_saison.htm">Saison</a>
<a href="a-jgd_intern.htm">Intern
<a href="a-jgd_presse.htm">Presse
</p>
<div>
  <table>
    <tr>
      <td>
        <p>Klicke auf den jeweiligen Spielernamen, um nährere Informationen über ihn zu erhlten.
        <br>
        <img src="a-jgd_team.jpg" ></td>
    </tr>
    <tr>
      <td>Stehend, von links:

<a href="kunze.html" onclick="winopen(this.href); return false">

Pascal Kunze</a>,

<a href="gunter.html" onclick="winopen(this.href); return false">

Christoph Günther</a>,

<a href="kroll.html" onclick="winopen(this.href); return false">

Tobias Kroll</a>,

<a href="schafer.html" onclick="winopen(this.href); return false">

Benedikt Schäfer</a>,

<a href="willam.html" onclick="winopen(this.href); return false">

Ralph Willam</a>,

<a href="schumann.html" onclick="winopen(this.href); return false">

Christoph Schumann</a>

und

<a href="finster.html" onclick="winopen(this.href); return false">

Stephan Finster</a>.

<p>Hockend, von links:

<a href="hermann.html" onclick="winopen(this.href); return false">

Trainer Frank Hermann</a>,

<a href="surmann.html" onclick="winopen(this.href); return false">

Frederik Surmann</a>,

<a href="weckheuer.html" onclick="winopen(this.href); return false">

Tim Weckheuer</a>,

<a href="janko.html" onclick="winopen(this.href); return false">

Jan Janko</a>,

<a href="fries.html" onclick="winopen(this.href); return false">

Michael Friese</a>

und

<a href="preuss.html" onclick="winopen(this.href); return false">

Lars Preuß</a>.

</td>
    </tr>
  </table>
</div>
<hr>

</body>

</html>

Gruß

Avalon