























<!-- Beginning of JavaScript -















































// CREDITS:

















// Simple DHTML-ticker with last-letter-animation by Urs Dudli and Peter Gehrig 
















// Copyright (c) 2000 Peter Gehrig and Urs Dudli. All rights reserved.
















// Permission given to use the script provided that this notice remains as is.
















// Additional scripts can be found at http://www.24fun.com.
















// info@24fun.ch
















// 7/31/2000
















// IMPORTANT: 
















// If you add this script to a script-library or a script-archive 
















// you have to insert a link to http://www.24fun.com right into the webpage where the script
















// will be displayed.
















// CONFIGURATION:
















// Go to http://www.24fun.com, open category 'text' and download the ZIP-file of this script 
















// containing the the script-file with step-by-step instructions for easy configuration.
















// 	Configure your messages. You may add as many messages as you like.

















var message=new Array()
















//message[x]="max. Länge      max. Länge       max. Länge             max. Länge"
message[0]="RENORGA: Beratung braucht Betreuung !"









message[1]="Energie sparen --> Treibhausgase reduzieren !"









message[2]="Energie effizient erzeugen --> Treibhausgase reduzieren !"









message[3]="Regenrative Energien nutzen --> Treibhausgase reduzieren !"









message[4]="Der Transport von 1 KG Kiwi von Neuseeland nach Europa . . . . "









message[5]=". . hinterläßt 5 KG CO2 in der Atmosphäre !"       









message[6]="Über 40 % des Nordpolareises ist abgeschmolzen !"


























































































































































message[7]="Unsere gemeinsame Zukunft: Liegt in unseren Händen !"










// set a link for each meassage

















var messagelink=new Array(0)
















messagelink[0]="http://service.bfast.com/bfast/click?bfmid=7279965&siteid=30125004&bfpage=webclipart3"
















messagelink[1]="http://service.bfast.com/bfast/click?bfmid=7279965&siteid=30125004&bfpage=javascript"
















messagelink[2]="http://service.bfast.com/bfast/click?bfmid=599904&siteid=30259589&bfpage=gifbot"
















// set a target for each messagelink. Accepted values: '_blank', '_top',
















// '_parent', '_self' or the name of your frameset
















var linktarget=new Array(0)
















linktarget[0]="_blank"
















linktarget[1]="_blank"
















linktarget[2]="_blank"

















// horizontal position of the ticker
















// (distance to the left margin of the browser-window, pixels)
















var leftposition=7
















// vertical position of position of the ticker 
















// (distance to the top margin of the browser-window, pixels)

















var topposition=2

















// width of the ticker

















var tickerwidth=550
















// height of the ticker
















var tickerheight=25
















// distance from the messagetext to the tickermarrgin (pixels)
















var tickerpadding=0
















// borderwidth of the ticker (pixels)
















var borderwidth=0
















// font-family
















var fnt="Georgia,Arial Narrow,Garamond,Georgia,MS Sana Serif"
















// font-size of the text
















var fntsize=9
















// font-size of the last letter of the ticker
















var fntsizelastletter=9
















// font-color of the text
















var fntcolor="000000"
















// font-color of the last letter of the ticker
















var fntcolorlastletter="ffffff"
















// font-weight. Set a value between 1 to 9 to adjust the boldness
















var fntweight=1
















// backgroundcolor
















var backgroundcolor="ffffff"
















// standstill between the messages (microseconds)
















var standstill=4000
















// speed (a higher value will slow down the ticker)
















var speed=100





































































































// Do not edit the variables below
















var i_substring=0























var i_presubstring=0























var i_message=0























var messagecontent=""























var messagebackground=""























var messagepresubstring=""























var messageaftersubstring=""























fntweight=fntweight*100















































function initiateticker() {























	getmessagebackground()























	if (document.all) {	























		document.all.ticker.style.posLeft=leftposition























		document.all.ticker.style.posTop=topposition























		document.all.tickerbg.style.posLeft=leftposition























		document.all.tickerbg.style.posTop=topposition























		tickerbg.innerHTML=messagebackground























		showticker()























	}























	if (document.layers) {























		document.tickerbg.document.write(messagebackground)























		document.tickerbg.document.close()























		document.ticker.left=leftposition























		document.ticker.top=topposition























		document.tickerbg.left=leftposition























		document.tickerbg.top=topposition























		showticker()























	}























}















































function getmessagebackground() {























		messagebackground="<table border="+borderwidth+" width="+tickerwidth+" height="+tickerheight+"><tr><td valign=top bgcolor='"+backgroundcolor+"'>"























		messagebackground+="</td></tr></table>"























}















































function getmessagecontent() {























		messagepresubstring=message[i_message].substring(0,i_presubstring)























		messageaftersubstring=message[i_message].substring(i_presubstring,i_substring)























		messagecontent="<table border=0 cellpadding="+tickerpadding+" width="+tickerwidth+" height="+tickerheight+"><tr><td valign=top>"























		messagecontent+="<span style='position:relative; font-family:"+fnt+";color:"+fntcolor+";font-size:"+fntsize+"pt;font-weight:"+fntweight+"'>"	























		//messagecontent+="<a href='"+messagelink[i_message]+"' target='"+linktarget[i_message]+"'>"























		messagecontent+="<font color='"+fntcolor+"'>"























		messagecontent+=messagepresubstring























		messagecontent+="</font>"























		messagecontent+="</a>"























		messagecontent+="</span>"























		messagecontent+="<span style='position:relative; font-family:"+fnt+";color:"+fntcolor+";font-size:"+fntsizelastletter+"pt;font-weight:500'>"	























		messagecontent+="<a href='"+messagelink[i_message]+"' target='"+linktarget[i_message]+"'>"























		messagecontent+="<font color='"+fntcolor+"'>"























		messagecontent+=messageaftersubstring























		messagecontent+="</font>"























		messagecontent+="</a>"























		messagecontent+="</span>"























		messagecontent+="</td></tr></table>"























}















































function showticker() {























	if (i_substring<=message[i_message].length-1) {























			i_substring++























			i_presubstring=i_substring-1























			if (i_presubstring<0) {i_presubstring00}























			getmessagecontent()























		if (document.all) {























			ticker.innerHTML=messagecontent























			var timer=setTimeout("showticker()", speed)























		}























		if (document.layers) {























			document.ticker.document.write(messagecontent)























			document.ticker.document.close()























			var timer=setTimeout("showticker()", speed)























		}























	}























	else {























		clearTimeout(timer)























		var timer=setTimeout("changemessage()", standstill)























	}























}















































function changemessage() {























	i_substring=0























	i_presubstring=0























	i_message++























	if (i_message>message.length-1) {























		i_message=0























	}























	showticker()























}















































// - End of JavaScript - -->