function show(url,bild_b,bild_h,bild_position){
	window.open(url,"","width=" + bild_b + ",height=" + bild_h + ",top=344,left=" + bild_position + ",resizable=no,scrollbars=no,location=no,menubar=no,toolbar=no,titlebar=no");
}

function show2(url){
	window.open(url,"","width=365,height=600,top=10,left=210,resizable=no,scrollbars=yes,location=no,menubar=no,toolbar=no,titlebar=no");
}

function show3(url){
	window.open(url,"","width=580,height=380,top=10,left=210,resizable=no,scrollbars=yes,location=no,menubar=no,toolbar=no,titlebar=no");
}

function show4(url){
	window.open(url,"","width=580,height=380,top=10,left=210,resizable=no,scrollbars=yes,location=no,menubar=no,toolbar=no,titlebar=no");
}

function show5(url){
	window.open(url,"","width=590,height=680,top=10,left=210,resizable=no,scrollbars=yes,location=no,menubar=no,toolbar=no,titlebar=no");
}

function schliessen(){
	self.close();
}

function display(id, wartosc){
	if(wartosc){
		if (document.getElementById) document.getElementById(id).style.display = wartosc;
		else if (document.all) document.all[id].style.display = wartosc;
	}
	else{
		var wart = "";
		if (document.getElementById) wart = document.getElementById(id).style.display;
		else if (document.all) wart = document.all[id].style.display;
		return wart; 
	}
}

function ukryj(id){
	display(id, "none");
}