function reise_k() {
	/* Hier die Daten eintragen */
	var curItem = 19;
	var oDate = "26112009";
	/* Ende Daten eintragen */
	var maxItem = 45;
	var leadNull = "0";
	for( var tPos = 1; tPos <= maxItem; tPos++) {
		if (tPos > 9) {leadNull="";}
		if (tPos > curItem) {document.write ('<INPUT name="katalog_' + leadNull + tPos + '" type="hidden" value="">');}
			else {
				document.write ('	<TR align="center">');
				document.write ('		<TD valign="middle" align="center">');
				document.write ('			<INPUT name="katalog_' + leadNull + tPos + '" align="center" type="checkbox" value="reise_' + leadNull + tPos + '_'+ oDate +'">');
				document.write ('		</TD>');
				document.write ('		<TD width="7">');
				document.write ('		</TD>');
				document.write ('		<TD valign="top" align="center">');
				document.write ('			<img width="326" src="/dynamic/kataloge/reise_' + leadNull + tPos + '_'+ oDate +'.jpg">');
				document.write ('		</TD>');
				document.write ('	</TR>');
				if (tPos < curItem) {
					document.write ('	<TR>');
					document.write ('		<td colspan=3 class="htab11"></td>');
					document.write ('	</TR>');
					}
				}
	}
}