// JavaScript Document
function switchArt (iname){
var supported = (document.getElementById || document.all);
//var s = 0;
	if (!supported){alert('Zaktualizuj swoj- przegl-darką - b-d- kompatybilny z najnowszymi standardami.');return;}
	if (document.getElementById){stat = document.getElementById(iname).style.display;}
	else if (document.all){stat = document.all[iname].style.display;}
	if (stat == 'block'){stat = 'none'}
		else{stat = 'block'}
	if (document.getElementById){document.getElementById(iname).style.display = stat;}
		else if (document.all){document.all[iname].style.display = stat;}
	return;
}
function confirmLink(theAlert){
var is_confirmed = confirm(theAlert);
	return is_confirmed;
}
function create(dok,szer,wys){
var okno;
if (!okno || okno.closed){
	okno = window.open('',"displayWindow",'width='+szer+',height='+wys+',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0');
	okno.moveTo(parseInt((screen.availWidth-szer)/2),parseInt((screen.availHeight-wys)/2));
	okno.location = dok;
	okno.focus();}
else{
	okno.resizeTo(szer,wys);
	okno.moveTo(parseInt((screen.availWidth-szer)/2),parseInt((screen.availHeight-wys)/2));
	okno.location = dok;
	okno.focus();}
}