// JavaScript Document

function Termin() {
				document.write("<select name='termin' style='width: 100px; margin-right: 10px'>")
				for (var i=1; i<=90;i++) {
					document.write('<option value='+Datum(i)+'>'+Datum(i)+'</option>')
				}
				document.write("</select>")
			}

			function Datum(ab) {
				var time = new Date()
				time.setTime( time.getTime()+ab*86400000);
				tag     = time.getDate();
				monat   = time.getMonth()+1;
				jahr    = time.getYear();
				if (tag<10) tag="0"+tag;
				if (monat<10) monat="0"+monat;
				if (jahr<2000) jahr+=1900;
				return tag+'.'+monat+'.'+jahr;
			}
			
			function zufall() {
			var bilder = new Array(
				'http://www.terracus.de/style/images/terracus1.jpg',
				'http://www.terracus.de/style/images/terracus2.jpg',
				'http://www.terracus.de/style/images/terracus3.jpg',
				'http://www.terracus.de/style/images/terracus4.jpg',
				'http://www.terracus.de/style/images/terracus5.jpg',
				'http://www.terracus.de/style/images/terracus6.jpg',
				'http://www.terracus.de/style/images/terracus7.jpg',
				'http://www.terracus.de/style/images/terracus8.jpg',
				'http://www.terracus.de/style/images/terracus9.jpg',
				'http://www.terracus.de/style/images/terracus10.jpg',
				'http://www.terracus.de/style/images/terracus11.jpg'
<!--			'http://www.terracus.de/style/images/terracus12.jpg' -->
);
			var anzahl = bilder.length;
			var nr = Math.floor(Math.random()*anzahl);
			document.write('<p style="margin-bottom: 0; margin-top: 0"><img src="'+bilder[nr]+'" width="620" alt="Terracus - wir sind da, wenn Sie weg wollen." /><\/p>');
		}
		
		function setBookmark(url,str){
		if(str=='')str=url;
		if (document.all)window.external.AddFavorite(url,str);
		else alert('Bitte Strg und D dr&uuml;cken um diese Seite zu den Lesezeichen hinzuzuf&uuml;gen.');
		}
		
		function frameda() {
			var dokument=location.search;
			if(dokument)
			frames.frame.location.href=dokument.substring(1,dokument.length);
			}

			if (self != top)
			frame.location.href=self.location.href;