<!--

function showHide(idElement, prefix, amount) {
//	for (var i=1; i<amount; i++) {
//		document.getElementById(prefix+i).style.display='none';
//	}
	if(document.getElementById(prefix+idElement).style.display=='block') {
		document.getElementById(prefix+idElement).style.display='none';
	}else{
		document.getElementById(prefix+idElement).style.display='block';
	
	}
}

function otworz(nazwa,szer,wys) {
	config='left=100,top=100,width='+szer+',height='+wys+',innerheight='+wys+',innerwidth='+szer+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no';
	stadion=window.open('','infoshare',config)
	var otworzZW='';
	otworzZW+='<html><head>';otworzZW+='<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-2">';
	otworzZW+='<title>infoShare</title>';
	otworzZW+='</head>';
	otworzZW+='<body bgcolor="white" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0">';
	otworzZW+='<div align="center"><a href="#" onclick="javascript:self.close();"><img src='+nazwa+' border="0" alt="" /></a></div>';
	otworzZW+='</body></html>';
	stadion.document.write(otworzZW);
}


//-->



