// JavaScripts von Rafael Bräg für www.braeg.de
// <c> Rafael Bräg, 2003,  rafael@braeg.de

function okfenster() { 
var win; 
win=window.alert("Fatal Error: Nothing is OK! \n \n :-) \n \n Kleiner Scherz, dieses Bild soll nur zeigen, was mir neulich auf dem Bildschirm rumgegeistert ist"); 
} 

function schliessenfenster() { 
var win; 
win=window.alert("User Error: You have not the rights to close anything!"); 
} 

function rechts(u,fr) { 
F=eval("parent."+fr); 
F.location.href = u; 
} 

function steuerung(u1,fr1,u2,fr2,u3,fr3) { 
F=eval("parent."+fr1); 
F.location.href = u1; 
F=eval("parent."+fr2); 
F.location.href = u2; 
} 

function openThailand(s){
	var u=s;
	var n="thailandFrame"
	var w=window.screen.width; 
	var h=window.screen.height;
	var optionen = "scrollbars=auto,screenX=-5,screenY=-10,titlebar,width="+w+",height="+h;
	if (document.all){//Code für IE4, IE5.X
	 window.open(u,n,"fullscreen,scrollbars")
	} else if (document.layers) {//Code für NN4.X
	 window.open(u,n,optionen)
	} else if (document.getElementById) {//Code für N6
	 window.open(u,n,optionen)
	}
	else {window.open(s,"thailand",optionen)}
	}
