//Image Fade
	//<img name="fade_img" src="http://www.google.at/intl/de_at/images/logo.gif">
	//<img name="fade_img" onload="fade_effect()" src="http://www.google.at/intl/de_at/images/logo.gif">
	var transperenz=0;
	//var abstand;
	var abstand;
	var x_fade;
	
	function fade_effect()
	{
		x_fade=document.getElementsByName('fade_img').length-1;
		
		while(x_fade>=0)
			{
			document.getElementsByName('fade_img')[x_fade].style.opacity=transperenz;
			x_fade--;
			}

		abstand=1-transperenz/10;
		transperenz+=abstand/150;
		
		setTimeout('fade_effect()',1);
		
	}
	

//Popup Dialog
	//<input type="button" onClick="popup('text oder html','http://google.at')" value="Klick Mich"/>
	//<a href="javascript:popup('text oder html','http://google.at')">Klick Mich</a>
	document.write('<div id="popup_div" style="position:absolute; left:50%; margin-left:-175px; top:25%; width:350px;"></div>');
	function schliesen() {
				document.getElementById('popup_div').style.width='0px';
				document.getElementById('popup_div').style.visibility='hidden';	
				}
	function popup(text, hyperlink)
		{
		if (hyperlink=='schliesen')
				{	
				div='<div align="center" style="height:18; background-image:url(bilder/popup/top.png)"></div>'
					+'<div align="center" style="background-image:url(bilder/popup/popup_bg.png)">'
					   +'<div id="popup_text" align="center" style="margin-left:10px; margin-right:10px;">'
						//text
					   +'</div>'
					   +'<div align="center">'
							+'<br>'
							+'<a href="javascript: schliesen();"><img src="bilder/popup/weiter_button.png" border="0" width="150"></a>'
					   +'</div>'
				   +'</div>'
				   +'<div align="center" style="height:18; background-image:url(bilder/popup/bottom.png)"></div>';
				document.getElementById('popup_div').innerHTML = div;
				document.getElementById('popup_text').innerHTML = text;
				}
			else
				{
				div='<div align="center" style="height:18; background-image:url(bilder/popup/top.png)"></div>'
					+'<div align="center" style="background-image:url(bilder/popup/popup_bg.png)">'
					   +'<div id="popup_text" align="center" style="margin-left:10px; margin-right:10px;">'
						//text
					   +'</div>'
					   +'<div align="center">'
							+'<br>'
							+'<a id="weiter_link" ><img src="bilder/popup/weiter_button.png" border="0" width="150"></a>'
					   +'</div>'
				   +'</div>'
				   +'<div align="center" style="height:18; background-image:url(bilder/popup/bottom.png)"></div>';
				document.getElementById('popup_div').innerHTML = div;
				document.getElementById('popup_text').innerHTML = text;
				document.getElementById('weiter_link').href = hyperlink;
				}
		}
		
		
//Bilder - Script
	/*html='<span id="bg" style="width:0px; height:0px; position:absolute; left:-100px; top:-100px; border-right-width:0px; visibility:hidden;"><img name="fade_img" onload="fade_effect()" src="bilder/bilder-script/bilder_bg.png" style="width:100%; height:100%;"><img id="bild1" style="width:60%; border:0; position:absolute; left:19%; top:10%;" /><a href="javascript:schliess()"><img src="bilder/bilder-script/close.png" style="width:0px; border:0; width:3%; position:absolute; left:80%; top:10%;"/></a></span>';
	document.write(html);
	function offnen (bild)
	{
		document.getElementById('bild1').src=bild;
		document.getElementById('bg').style.width="100%";
		document.getElementById('bg').style.height="100%";
		document.getElementById('bg').style.visibility="visible";
	}
	function schliess ()
	{
		document.getElementById('bg').style.width="0px";
		document.getElementById('bg').style.height="0px";
		document.getElementById('bild1').src='';
		document.getElementById('bg').style.visibility="hidden";
	}*/
