1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
38:
39:
40:
41:
42:
43:
44:
45:
46:
47:
48:
49:
50:
51:
52:
53:
54:
55:
56:
57:
58:
59:
60:
61:
62:
63:
64:
65:
66:
67:
68:
69:
70:
71:
72:
73:
74:
75:
76:
77:
78:
79:
80:
81:
82:
83:
84:
85:
86:
87:
88:
89:
90:
91:
92:
93:
94:
95:
96:
97:
98:
99:
100:
101:
102:
103:
104:
105:
106:
107:
108:
109:
110:
111:
112:
113:
114:
115:
116:
117:
118:
119:
120:
121:
122:
123:
124:
125:
126:
127:
128:
129:
130:
131:
132:
133:
134:
135:
136:
137:
138:
139:
140:
141:
142:
143:
144:
145:
146:
147:
148:
149:
150:
151:
152:
153:
154:
155:
156:
157:
158:
159:
160:
161:
162:
163:
164:
165:
166:
167:
168:
169:
170:
171:
172:
173:
174:
175:
176:
177:
178:
179:
180:
181:
182:
183:
184:
185:
186:
187:
188:
189:
190:
191:
192:
193:
194:
195:
196:
197:
198:
199:
200:
201:
202:
203:
204:
205:
206:
207:
208:
209:
210:
211:
212:
213:
214:
215:
216:
217:
218:
219:
220:
221:
222:
223:
224:
225:
226:
227:
228:
229:
230:
231:
232:
233:
234:
235:
236:
237:
238:
239:
240:
241:
242:
243:
244:
245:
246:
247:
248:
249:
250:
251:
252:
253:
254:
255:
256:
257:
258:
259:
260:
261:
262:
263:
264:
265:
266:
267:
268:
269:
270:
271:
272:
273:
274:
275:
276:
277:
278:
279:
280:
281:
282:
283:
284:
285:
286:
287:
288:
289:
290:
291:
292:
293:
294:
295:
296:
297:
298:
299:
300:
301:
302:
303:
304:
305:
306:
307:
308:
309:
310:
311:
312:
313:
314:
315:
316:
317:
318:
319:
320:
321:
322:
323:
324:
325:
326:
327:
328:
329:
330:
331:
332:
333:
334:
335:
336:
337:
338:
339:
340:
341:
342:
343:
344:
345:
346:
347:
348:
349:
350:
351:
352:
353:
354:
355:
356:
357:
358:
359:
360:
361:
362:
363:
364:
365:
366:
367:
368:
369:
370:
371:
372:
373:
374:
375:
376:
377:
378:
379:
380:
381:
382:
383:
384:
385:
386:
387:
388:
389:
390:
391:
392:
393:
394:
395:
396:
397:
398:
399:
400:
401:
402:
403:
404:
405:
406:
407:
408:
409:
410:
411:
412:
413:
414:
415:
416:
417:
418:
419:
420:
421:
422:
423:
424:
425:
426:
427:
428:
429:
430:
431:
432:
433:
434:
435:
436:
437:
438:
439:
440:
441:
442:
443:
444:
445:
446:
447:
448:
449:
450:
451:
452:
453:
454:
455:
456:
457:
458:
459:
460:
461:
462:
463:
464:
465:
466:
467:
468:
469:
470:
471:
472:
473:
474:
475:
476:
477:
478:
479:
480:
481:
482:
483:
484:
485:
486:
487:
488:
489:
490:
491:
492:
493:
494:
495:
496:
497:
498:
499:
500:
501:
502:
503:
504:
505:
506:
507:
508:
509:
510:
511:
512:
513:
514:
515:
516:
517:
518:
519:
520:
521:
522:
523:
524:
525:
526:
527:
528:
529:
530:
531:
532:
533:
534:
535:
536:
537:
538:
539:
540:
541:
542:
543:
544:
545:
546:
547:
548:
549:
550:
551:
552:
553:
554:
555:
556:
557:
558:
559:
560:
561:
562:
563:
564:
565:
566:
567:
568:
569:
570:
571:
572:
573:
574:
575:
576:
577:
578:
579:
580:
581:
582:
583:
584:
585:
586:
587:
588:
589:
590:
591:
592:
593:
594:
595:
596:
597:
598:
599:
600:
601:
602:
603:
604:
605:
606:
607:
608:
609:
610:
611:
612:
613:
614:
615:
616:
617:
618:
619:
620:
621:
622:
623:
624:
625:
626:
627:
628:
629:
630:
631:
632:
633:
634:
635:
636:
637:
638:
639:
640:
641:
642:
643:
644:
645:
646:
647:
648:
649:
650:
651:
652:
653:
654:
655:
656:
657:
658:
659:
660:
661:
662:
663:
664:
665:
666:
667:
668:
669:
670:
671:
672:
673:
674:
675:
676:
677:
678:
679:
680:
681:
682:
683:
684:
685:
686:
687:
688:
689:
690:
691:
692:
693:
694:
695:
696:
697:
698:
699:
700:
701:
702:
703:
704:
705:
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Eifelstals Avellino M</title>
<style type="text/css">
<!--
.Stil1 {font-family: "Simplified Arabic"}
-->
</style>
</head>
<body>
<table border="1" width="618">
<tbody>
<tr>
<td class="Stil1" width="612">
<p><img src="http://wildbach.pytalhost.de/Steckbrief/Eifelstals%20Avellino%20M/Bilder/Avellino%20M3.jpg"></p>
<small><small><span style="color: rgb(100, 110, 86);">Copyright by
Waterice</span></small></small><big><big><big><big><big><span style="font-size: 3px;"></span></big></big></big></big></big></td>
</tr>
<tr>
<td class="Stil1">
<table border="1" width="612">
<tbody>
<tr>
<td style="color: rgb(100, 110, 86);" width="92">
<div align="center"><a href="http://wildbach.pytalhost.de/Steckbrief/Eifelstals%20Avellino%20M/Eifelstals%20Avellino%20M.html" target="main"><font color="#646e56">Allgemeines</font></a></div>
</td>
<td style="color: rgb(100, 110, 86);" width="191">
<p align="center"><a href="http://wildbach.pytalhost.de/Steckbrief/Eifelstals%20Avellino%20M/Eifelstals%20Avellino%20M2.html" target="main"><font color="#646e56">Charakter&Verhalten</font></a></p>
</td>
<td style="text-decoration: underline; color: rgb(100, 110, 86);" width="56">
<div align="center"><a href="http://wildbach.pytalhost.de/Steckbrief/Eifelstals%20Avellino%20M/Eifelstals%20Avellino%20M2.html" target="main"><font color="#646e56">Ausbildung</font></a></div>
</td>
<td style="text-decoration: underline; color: rgb(100, 110, 86);" width="96">
<div align="center"><a href="http://wildbach.pytalhost.de/Steckbrief/Eifelstals%20Avellino%20M/Eifelstals%20Avellino%20M3.html" target="main"><font color="#646e56">Zucht</font></a></div>
</td>
<td style="text-decoration: underline; color: rgb(100, 110, 86);" width="75">
<div align="center"><a href="http://wildbach.pytalhost.de/Steckbrief/Eifelstals%20Avellino%20M/Eifelstals%20Avellino%20M4.html" target="main"><font color="#646e56">Turniere</font></a></div>
</td>
<td style="text-decoration: underline; color: rgb(100, 110, 86);" width="76">
<div align="center"><a href="http://wildbach.pytalhost.de/Steckbrief/Eifelstals%20Avellino%20M/FotoalbumS.html" target="main"><font color="#646e56">Fotoalbum</font></a></div>
</td>
</tr>
</tbody>
</table>
</td>
</tr>
</tbody>
</table>
<p class="Stil1"> </p>
<table style="color: rgb(100, 110, 86);" border="1" width="612">
<tbody>
<tr>
<td class="Stil1" width="606">
<div align="center">Allgemeines</div>
</td>
</tr>
</tbody>
</table>
<table border="1" width="616">
<tbody>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="303">
<div align="center">Name</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="303">
<div align="center">Eifelstals Avellino M</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Rasse</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Bayrisches Warmblut</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Geschlecht</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Hengst</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Alter</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">0 Jahre</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Farbe</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Fuchs</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Stockmaß</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">166cm</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Abzeichen</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">-</div>
</td>
</tr>
</tbody>
</table>
<p class="Stil1"> </p>
<table border="1" width="613">
<tbody>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="303">
<div align="center">Besitzer</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="300">
<div align="center">Gestüt Wildbach</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Wert</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">6000€</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Vorbesitzer/Züchter</div>
</td>
<td style="text-align: center; text-decoration: underline; color: rgb(100, 110, 86);" class="Stil1"><a href="http://www.eifelstal.de/" target="_blank"><font color="#646e56">SPZ
Eifelstal</font></a></td>
</tr>
</tbody>
</table>
<p class="Stil1"> </p>
<table style="color: rgb(100, 110, 86);" border="1" width="613">
<tbody>
<tr>
<td class="Stil1">
<div align="center">Allgemeiner Gesundheitszustand</div>
</td>
</tr>
</tbody>
</table>
<table border="1" width="613">
<tbody>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="175">
<div align="center">Hufzustand</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="21">
<div align="center">
<select name="select" id="select"DISABLED>
<option value="sehrgut">Sehr Gut</option>
<option value="gut">Gut</option>
<option value="nichtgut">Nicht Gut</option>
<option value="kritisch">Kritisch
</option>
</select>
</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="296">
<div align="center">Gesundheitszustand</div>
</td>
<td class="Stil1" width="103">
<div align="center">
<select name="select2" id="select2"DISABLED>
<option value="sehrgut">Sehr Gut</option>
<option value="gut">Gut</option>
<option value="nichtgut">Nicht Gut</option>
<option value="kritisch">Kritisch</option>
</select>
</div>
</td>
</tr>
</tbody>
</table>
<table style="color: rgb(100, 110, 86);" border="1" width="615">
<tbody>
<tr>
<td class="Stil1">
<div align="center">Impfungen</div>
</td>
</tr>
</tbody>
</table>
<table border="1" width="614">
<tbody>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="124">
<div align="center">Tollwut</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="412">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_0" type="radio"DISABLED>Geimpft</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_1" value="optionsschalter" checked>
Nicht
geimpft </label></td>
</tr>
</tbody>
</table>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="195">
<div align="center">Druse</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="42">
<div align="center">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_2" type="radio"DISABLED>Geimpft</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_3" value="optionsschalter" checked>
Nicht
Geimpft</label></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Kolik</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_10" type="radio"DISABLED>Geimpft</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_11" value="optionsschalter" checked>
Nicht
Geimpft </label></td>
</tr>
</tbody>
</table>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Fohlenlähme</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_4" type="radio"DISABLED>Geimpft</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_5" value="optionsschalter" checked>
Nicht
Geimpft </label></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Rotz</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_12" type="radio"DISABLED>Geimpft </label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio" disabled id="Optionsschaltergruppe1_13" value="optionsschalter" checked >
Nicht
Geimpft </label></td>
</tr>
</tbody>
</table>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Wundstarrkrampf</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_6" type="radio"DISABLED>Geimpft </label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_7" value="optionsschalter" checked>
Nicht
Geimpft </label></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Wurmkur</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_14" type="radio"DISABLED>Geimpft</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_15" value="optionsschalter" checked>
Nicht
Geimpft</label></td>
</tr>
</tbody>
</table>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">Infulenza</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1">
<div align="center">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_8" type="radio"DISABLED>Geimpft</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_9" value="optionsschalter" checked>
Nicht
Geimpft </label></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
<table style="color: rgb(100, 110, 86);" border="1" width="612">
<tbody>
<tr>
<td class="Stil1">
<div align="center">Hufe</div>
</td>
</tr>
</tbody>
</table>
<table border="1" width="638">
<tbody>
<tr>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="134">
<div align="center">Eisen vorne</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="243">
<div align="center">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_16" type="radio"DISABLED>Ja</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_17" value="optionsschalter" checked>
Nein</label></td>
</tr>
</tbody>
</table>
</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="147">
<div align="center">Eisen hinten</div>
</td>
<td style="color: rgb(100, 110, 86);" class="Stil1" width="96">
<div align="center">
<table width="200">
<tbody>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" value="optionsschalter" id="Optionsschaltergruppe1_18" type="radio"DISABLED>Ja</label></td>
</tr>
<tr style="color: rgb(100, 110, 86);">
<td><label> <input name="Optionsschaltergruppe1" type="radio"DISABLED id="Optionsschaltergruppe1_19" value="optionsschalter" checked>
Nein</label></td>
</tr>
</tbody>
</table>
</div>
</td>
</tr>
</tbody>
</table>
<p class="Stil1"> </p>
<p class="Stil1"> </p>
<p> </p>
<p> </p>
<p> </p>
<script src="http://layer-ads.de/la-11423-subid:p118413.js" type="text/javascript"></script></body>
</html> |