function getImg(_out, _over, _alt, _class, _click){
document.write( "<img src=\"" + _out + "\" alt=\"" + _alt + "\" title=\"" + _alt + "\"" +
((_class)?" class=\"" + _class + "\"":"") +
((_over!='')?" onmouseover=\"setImg (this, '" + _over + "', '" + _alt + "');\"":"") +
((_over!='')?" onmouseout=\"setImg (this, '" + _out + "');\"":"") +
((_click)?" onclick=\"" + _click + "\"" : "" )+
"/>");
}
function setImg (_img, _src, _text) {
	_img.src = _src;
	if (document.getElementById('messageDiv'))
		document.getElementById('messageDiv').innerHTML = ((typeof(_text)=="undefined")?"":_text);
}
function HREF (_adres){
	/*if (navigator.appVersion.indexOf('MSIE')>=0)
		window.location.href = 
	else*/
		window.location.href = _adres;
}
