function setCopyright() {

//netscape 4.x
	if (window.document.layers) {
	window.document.copyright.left=window.innerWidth-20;
	window.document.copyright.top=window.innerHeight-100;
	window.document.copyright.visibility="visible";
	}
//ie 4
	else	if (window.document.all) {
	window.document.all.copyright.style.pixelLeft=window.document.body.offsetWidth-20;
	window.document.all.copyright.style.pixelTop=window.document.body.offsetHeight-100;
	window.document.all.copyright.style.visibility="visible";
	}
//ie 5+ und netscape 6+
	else	if (window.document.getElementById) {
	window.document.getElementById('copyright').style.left=window.innerWidth-20;
	window.document.getElementById('copyright').style.top=window.innerHeight-100;
	window.document.getElementById('copyright').style.visibility="visible";
	};
};


/*
im body tag mŸssen folgende eventHandler eingebaut werden:

onLoad="setCopyright()"
onResize="window.location.href = window.location.href;"

und natŸrlich muss ein div name="copyright" im dokument eingebaut werden:

<div id="copyright" style="position:absolute; width:12; height:91; z-index:1; visibility: hidden"> 
	<img src="img/element_copyright.gif" alt="" width="12" height="91" border="0">
</div>

*/
