<!-- 
	var _br=0;
	var _ho=0;
	var _fenster;
	var _aktiv;
	function zeigeBild2(bild, text, grX, grY, pfad)
	{
		if (_fenster)
			if (!_fenster.closed) _fenster.close();		
		_fenster=window.open("", text, "left=160,top=50,width="+grX+",height="+(grY+20)+",resizable=yes");
		_br=grX-20;
		_ho=grY-20;
		_fenster.document.open();
		_fenster.document.writeln("<html>");
		_fenster.document.writeln("<head>");
		_fenster.document.writeln("<title>AMS-Motorsport Online: Bildvergrößerung</title>");
		_fenster.document.writeln("</head>");
		
		_fenster.document.writeln("<script language=\"JavaScript\"><!-- ");
		_fenster.document.writeln("	function fertig()");
		_fenster.document.writeln("	{");
		_fenster.document.writeln("		document.images[0].src=\"" + pfad + "/copyright_by_werbe-fuchs.gif\";");
		_fenster.document.writeln("		document.images[2].src=\"" + pfad + "/copyright_by_werbe-fuchs.gif\";");
		_fenster.document.writeln("		return true;");
		_fenster.document.writeln("	}");
		_fenster.document.writeln("//--></script>");

		_fenster.document.writeln("<body onload=\"javascript:fertig()\">");
		
		_fenster.document.write("<img src=\""+bild+"\" width=1 height=1 border=0>");
		_fenster.document.write("<table border=0 cellpadding=0 cellspacing=0 background="+bild+">");
		_fenster.document.write("<tr>");
		_fenster.document.write("<td><img src=\"" + pfad + "/copyright_by_meike-kerstin.gif\" border=0 width="+_br+" height="+_ho+"></td>");
		_fenster.document.write("</tr>");
		_fenster.document.write("</table>");
		_fenster.document.write("<img src=\"" + pfad + "/lade.gif\" border=0>");
		
		_fenster.document.writeln("</body>");
		_fenster.document.writeln("</html>");
		_fenster.document.close();
	}
	
	function zeigeBild(bild, quelle, pfad)
	{
		if (_fenster)
			if (!_fenster.closed) _fenster.close();		

		_fenster=window.open("", "", "width=640,height=480,resizable=yes,scrollbars");

		_fenster.document.open();
		_fenster.document.writeln("<html>");
		_fenster.document.writeln("<head>");
		_fenster.document.writeln("<title>AMS-Motorsport Online: Bildvergrößerung</title>");
		_fenster.document.writeln("</head>");
		
		_fenster.document.write("<table><tr><td><img src=\"" + bild + "\" border=0>");
		_fenster.document.write("<p style=\"font-family:Arial,sans-serif; font-size:11px; text-align=right; color:#000000;\">Quelle: " + quelle + "</p></td></tr></table>");
		
		_fenster.document.writeln("</body>");
		_fenster.document.writeln("</html>");
		_fenster.document.close();
	}
//-->
