urlArr = new Array (
[100, 'imp/transport/prezentacja_transport0.html', 'popup'],
[101, 'imp/transport/prezentacja_transport1.html', 'popup'], 
[201, 'imp/kotly/prezentacja_retortowe.html', 'popup'],
[202, 'imp/kotly/prezentacja_stalowe_gora.html', 'popup'],
[203, 'imp/kotly/prezentacja_stalowe_dol.html', 'popup'],
[204, 'imp/kotly/prezentacja_zgazujace.html', 'popup'],
[205, 'imp/kotly/prezentacja_tlok.html', 'popup'],
[206, 'imp/kotly/prezentacja_mialowe.html', 'popup'],
[207, 'imp/kotly/prezentacja_zeliwne.html', 'popup'],
[208, 'imp/kotly/prezentacja_ogniwo_s6wc.html', 'popup'],
[209, 'imp/kotly/prezentacja_ogniwo_s7wc.html', 'popup'],
[210, 'imp/kotly/prezentacja_ogniwo_ret.html', 'popup'],
[300, 'imp/kotly/prezentacja_zawor.html', 'popup']
);

function goToUrl (id) {
	for (n=0; n<urlArr.length; n++) {
		if (urlArr[n][0] == id) {
			if (urlArr[n][2] == 'popup') {
				window.open(urlArr[n][1], 'newWindow', 'width=600, height=500, scrollbars=auto, toolbar=no, status=no, menubar=no, locationbar=no, resizable');
			}else {
				this.location.href = urlArr[n][1];
			}
		}
	}
}