<!-- Pop-UP --
Fensterzahl=0

function openWindow(url,breite,hoehe,alt)
{
	links=(screen.width-breite)/2
	oben=(screen.height-hoehe)/2
	if(Fensterzahl>0)
	{
	if(neuesFenster.closed==false)
	neuesFenster.close()
	}
	Fensterzahl=1
	neuesFenster=open("","scrollbars=yes","width="+breite+",height="+hoehe+",top="+oben+",screenY="+oben+",left="+links+",screenX="+links)
	
	neuesFenster.document.open();
	neuesFenster.document.write('<html><title>'+alt+'</title>')
	neuesFenster.document.write('<body topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">')
	neuesFenster.document.write('<img src="'+url+'">')
	neuesFenster.document.write('</body></html>')
	neuesFenster.document.close();
}
// -- Pop-UP -->


<!-- Protect --

var message="";
///////////////////////////////////
function clickIE() {if (document.all) {(message);return false;}}
function clickNS(e) {if 
(document.layers||(document.getElementById&&!document.all)) {
if (e.which==2||e.which==3) {(message);return false;}}}
if (document.layers) 
{document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS;}
else{document.onmouseup=clickNS;document.oncontextmenu=clickIE;}

document.oncontextmenu=new Function("return false")
// -- Protect -->

window.defaultStatus = "FlUiDs World";