noweOkienko = null;
function galeria(src, w, h){
if(window.screen){
 aw=screen.availWidth;
 ah=screen.availHeight;
}else{
 aw=640;
 ah=450;
}
if(noweOkienko==null || noweOkienko.closed){
 ustawienia=
 "left=" + (aw-w)/2 + ","
 +"top=" + (ah-h)/2 + ","
 +"screenX=" + (aw-w)/2 + ","
 +"screenY=" + (ah-h)/2 + ","
 +"width=" + w + ","
 +"height=" + h + ","
 +"innerWidth=" + w + ","
 +"innerHeight=" + h + ","
 +"toolbar=no,"
 +"location=no,"
 +"directories=no,"
 +"status=yes,"
 +"menubar=no,"
 +"scrollbars=no,"
 +"resizable=no"
 noweOkienko = window.open("",'obrazek',ustawienia);
}
noweOkienko.document.open();
noweOkienko.document.clear();
noweOkienko.document.write(
"<html><head><title>PRO-ART Profesjonalna Technika Estradowa</title>\n"
+"</head><BODY bgcolor=#FFFFFF>\n"
+"<div class=bgfoto id='wait' style='position:absolute; left:" + (w-120)/2 + "px; top:" + h/2 + "px; width:" + w + "; height=" + h + "; z-index:1'><font size='2' face='sans-serif'> trwa wgrywanie ... </font></div>\n"
+"<div id='img' style='position:absolute; left:0; top:0; width:300; height:200px; z-index:2'><a href='javascript:window.close()'><img src="+ src +" width=" + w + " height=" + h + "  alt=' zamknij ' border=0></a></div>\n"
+"</body></html>"
);
noweOkienko.document.close();
noweOkienko.focus();
}



function showBox(id)
{
	var box = document.getElementById(id);
	
	if(box.style.display=='none')
	{
		
		box.style.display='block';
	}

}


function hideBox(id)
{
	var box = document.getElementById(id);
	
	if(box.style.display=='block')
	{
		box.style.display='none';
	}

}


