// *********************************** //
// name     : New Layer Object         //
// author   : Paweł Kaleta alias Kalce //
// email    : kalce@poczta.fm          //
// version  : 1.01a                    //
// copyright: free with this info      //
// *********************************** //

function NLayer(n) { this.name=n; this.body=""; this.zIndex=0; this.position='absolute'; this.layers=new Array(); this.add=NAdd; this.find=NFind; this.write=NWrite; this.update=NUpdate; this.link=NLink; this.build=NBuild; this.create=NCreate; } function NBuild() { var l=this, s; if (ie4||op5||nn6) { s="<div id='"+l.name+"' "+"style='"+(l.visibility?"visibility: "+l.visibility+"; ":"")+(l.zIndex>=0?"z-Index: "+l.zIndex+"; ":"")+(l.position?"position: "+l.position+"; ":"")+(l.bgImage?"background-image: url("+l.bgImage+"); ":"")+(l.bgColor?"background-color: "+l.bgColor+"; ":"")+(l.clip?"clip: rect("+l.clip+"); ":"")+(l.top>=0?"top: "+l.top+"; ":"")+(l.left>=0?"left: "+l.left+"; ":"")+(l.width>=0?"width: "+l.width+"; ":"")+(l.height>=0?"height: "+l.height+"; ":"")+"'>"+l.body+"</div>\n"; } else if (nn4) { s=(l.position=="relative"?"<ilayer>":"")+"<layer id='"+l.name+"' "+(l.visibility?"visibility="+l.visibility+" ":"")+(l.zIndex>=0?"z-Index="+l.zIndex+" ":"")+(l.bgImage?"background='"+l.bgImage+"' ":"")+(l.bgColor?"bgColor='"+l.bgColor+"' ":"")+(l.top>=0?"top="+l.top+" ":"")+(l.left>=0?"left="+l.left+" ":"")+(l.width>=0?"width="+l.width+" ":"")+(l.height>=0?"height="+l.height+" ":"")+">"+l.body+"</layer>"+(l.position=="relative"?"</ilayer>\n":"")+"\n"; } return s; } function NAdd(l) { this.body+=l.build(); l.parent=this; this.layers[this.layers.length]=l; } function NLink() { var o; this.obj=this.find(document); o=this.obj; if (this.onmouseover) o.onmouseover=this.onmouseover; if (this.onmouseout) o.onmouseout=this.onmouseout; if (this.onclick) { if (ie4||op5||nn6) o.onclick=this.onclick; else if (nn4) { o.document.captureEvents(Event.MOUSEUP); o.document.onmouseup=this.onclick; } } for (var k=0;k<this.layers.length;k++) this.layers[k].link(); } function NCreate() { document.write(this.build()); this.link(); } function NFind(d) { var o, k; if (ie4||op5) return d.all[this.name]; else if (nn4) for (k=0;k<d.layers.length;k++) { o=d.layers[k]; if (o.name==this.name) return o; if (o.document.layers.length>0 && (o=this.find(o.document))!=null) return o; } else if (nn6) return d.getElementById(this.name); return null; } function NWrite(s) { var o=this.obj; if (ie4) o.insertAdjacentHTML(s); else if (nn4||nn6) { o.document.open(); o.document.write(s); o.document.close(); } } function NUpdate(b,p) { var l=this, o=this.obj; if (ie4||op5||nn6) { if (b) { if (!p||p=='visibility') l.visibility=o.style.visibility; if (!p||p=='top') l.top=o.style.pixelTop; if (!p||p=='left') l.left=o.style.pixelLeft; if (!p||p=='width') l.width=o.style.pixelWidth?o.style.pixelWidth:o.clientWidth; if (!p||p=='height') l.height=o.style.pixelHeight?o.style.pixelHeight:o.clientHeight; if (!p||p=='zIndex') l.zIndex=o.style.zIndex; if (!p||p=='bgColor') l.bgColor=o.style.backgroundColor; if (!p||p=='bgImage') l.bgImage=o.style.backgroundImage; if (!p||p=='color') l.color=o.style.color; } else { if (!p||p=='visibility') o.style.visibility=l.visibility; if (!p||p=='top') o.style.top=l.top; if (!p||p=='left') o.style.left=l.left; if (!p||p=='width') o.style.width=l.width; if (!p||p=='height') o.style.height=l.height; if (!p||p=='zIndex') o.style.zIndex=l.zIndex; if (!p||p=='bgColor') o.style.backgroundColor=l.bgColor; if (!p||p=='bgImage') o.style.backgroundImage="url("+l.bgImage+")"; if (!p||p=='color') o.style.color=l.color; } } else if (nn4) { if (b) { if (!p||p=='visibility') l.visibility=o.visibility; if (!p||p=='top') l.top=o.top; if (!p||p=='left') l.left=o.left; if (!p||p=='width') l.width=o.document.width?o.document.width:o.clip.right-o.clip.left; if (!p||p=='height') l.height=o.document.height?o.document.height:o.clip.bottom-o.clip.top; if (!p||p=='zIndex') l.zIndex=o.zIndex; if (!p||p=='bgColor') l.bgColor=o.bgColor; if (!p||p=='bgImage') l.bgImage=background.src; if (!p||p=='color') l.color=o.color; } else { if (!p||p=='visibility') o.visibility=l.visibility; if (!p||p=='top') o.top=l.top; if (!p||p=='left') o.left=l.left; if (!p||p=='width') o.width=l.width; if (!p||p=='height') o.height=l.height; if (!p||p=='zIndex') o.zIndex=l.zIndex; if (!p||p=='bgColor') o.bgColor=l.bgColor; if (!p||p=='bgImage') o.background.src=l.bgImage; if (!p||p=='color') o.color=l.color; } } }

// *********************************** //

ie4=document.all?1:0;
nn4=document.layers?1:0;
nn6=document.getElementById&&!document.all?1:0;
op5=document.all&&navigator.userAgent.indexOf('Opera')!=-1?1:0;

// *********************************** //
// name     : Universal Menu Panel     //
// author   : Paweł Kaleta alias Kalce //
// email    : kalce@poczta.fm          //
// version  : 2.01a                    //
// copyright: free with this info      //
// *********************************** //

function Menu(n) { this.name=n; this.delay=50; this.zIndex=0; this.main=new Object(); this.items=new Array(); this.children=new Array(); this.frames=new Array(); this.init=MInit; this.draw=MDraw; this.count=MCount; this.enter=MEnter; this.exit=MExit; this.show=MShow; this.light=MLight; this.check=MCheck; this.click=MClick; this.malign=MAlign; this.resize=MResize; if (!document.menu) document.menu=new Array(); document.menu[document.menu.length]=this; if (!nn4) window.onresize=this.resize; } function MItem(m,t,u,w,h,p) { this.id=m.items.length; this.name=m.name+"_"+this.id; this.title=MParser(t); this.url=u; this.width=w; this.height=h; this.visible=true; this.border=m.border; this.padding=m.padding; this.space=m.space; this.view=m.view; this.expand=m.expand; this.brColorOff=m.brColorOff; this.bgColorOff=m.bgColorOff; this.blColorOff=m.blColorOff; this.bgImageOff=m.bgImageOff; this.colorOff=m.colorOff; this.brColorOn=m.brColorOn; this.bgColorOn=m.bgColorOn; this.blColorOn=m.blColorOn; this.bgImageOn=m.bgImageOn; this.colorOn=m.colorOn; this.style=m.style; this.parent=p?p:m.main; this.parents=new Array(); this.children=new Array(); this.layers=new Array(); if (p) { for (k=0;k<p.parents.length;k++) this.parents[this.parents.length]=p.parents[k]; this.parents[k]=p.id; p.children[p.children.length]=this.id; if (!p.fm) { p.fm=new NLayer(m.name+"_"+p.id+"_fm"); p.fm.visibility='hidden'; p.fm.width=0; p.fm.height=0; m.frames[m.frames.length]=p.fm; } } else { m.children[m.children.length]=this.id; if (!m.main.fm) { m.main.fm=new NLayer(m.name+"_main"); m.main.fm.top=m.top; m.main.fm.left=m.left; m.main.zIndex=m.zIndex; m.main.border=m.border; m.main.padding=m.padding; if (!m.main.space) m.main.space=m.space; if (!m.main.view) m.main.view=m.view; if (!m.main.expand) m.main.expand=m.expand; m.main.fm.visibility='hidden'; m.main.fm.width=0; m.main.fm.height=0; m.main.children=m.children; m.frames[m.frames.length]=m.main.fm; } } switch (this.parent.view) { case 'horizontal': this.parent.fm.width+=w+2*this.border+this.parent.space; this.parent.fm.height=h>this.parent.fm.height?h:this.parent.fm.height; break; case 'vertical': this.parent.fm.width=w>this.parent.fm.width?w:this.parent.fm.width; this.parent.fm.height+=h+2*this.border+this.parent.space; break; } this.on=new NLayer(m.name+"_"+this.id+"_on"); this.of=new NLayer(m.name+"_"+this.id+"_of"); this.ev=new NLayer(m.name+"_"+this.id+"_ev"); m.items[m.items.length]=this; this.body=MBody; } function MParser(s) { s=s.replace("ą","&#261;"); s=s.indexOf("ą")!=-1?MParser(s):s; s=s.replace("ć","&#263;"); s=s.indexOf("ć")!=-1?MParser(s):s; s=s.replace("ę","&#281;"); s=s.indexOf("ę")!=-1?MParser(s):s; s=s.replace("ł","&#322;"); s=s.indexOf("ł")!=-1?MParser(s):s; s=s.replace("ń","&#324;"); s=s.indexOf("ń")!=-1?MParser(s):s; s=s.replace("ó","&#243;"); s=s.indexOf("ó")!=-1?MParser(s):s; s=s.replace("ś","&#347;"); s=s.indexOf("ś")!=-1?MParser(s):s; s=s.replace("ź","&#378;"); s=s.indexOf("ź")!=-1?MParser(s):s; s=s.replace("ż","&#380;"); s=s.indexOf("ż")!=-1?MParser(s):s; s=s.replace("Ą","&#260;"); s=s.indexOf("Ą")!=-1?MParser(s):s; s=s.replace("Ć","&#262;"); s=s.indexOf("Ć")!=-1?MParser(s):s; s=s.replace("Ę","&#280;"); s=s.indexOf("Ę")!=-1?MParser(s):s; s=s.replace("Ł","&#321;"); s=s.indexOf("Ł")!=-1?MParser(s):s; s=s.replace("Ń","&#323;"); s=s.indexOf("Ń")!=-1?MParser(s):s; s=s.replace("Ó","&#211;"); s=s.indexOf("Ó")!=-1?MParser(s):s; s=s.replace("Ś","&#346;"); s=s.indexOf("Ś")!=-1?MParser(s):s; s=s.replace("Ź","&#377;"); s=s.indexOf("Ź")!=-1?MParser(s):s; s=s.replace("Ż","&#379;"); s=s.indexOf("Ż")!=-1?MParser(s):s; return s; } function MEnter(id) { this.last=id; this.active=id; this.light(id,true); this.show(id,true); } function MExit(id) { this.last=id; this.active=-1; this.light(id,false); if (this.delay>0) setTimeout('eval('+this.name+').check('+id+')',this.delay); else this.check(id); } function MClick(id) { var u=this.items[id].url; if (u=="") return; this.active=-1; this.check(id); if (u.indexOf("javascript:")==0) eval(u); else window.location.href=u; } function MCheck(id) { var i=this.items[id], a=this.active, k; for (k=0;k<i.children.length;k++) if (a==i.children[k]) { this.light(id,true); return; } for (k=0;k<i.parents.length;k++) if (a==i.parents[k]) { this.show(id,false); return; } if (a==-1) this.show(i.parents.length>0?i.parents[0]:id,false); else if (this.items[a].parent.id!=i.parent.id) { this.show(id=i.parents.length>0?i.parent.id:id,false); if (this.items[id].parent.id!=i.parent.id) this.check(id); } else if (a!=id) this.show(id,false); } function MShow(id,b) { var i=this.items[id], fm=i.fm, v, k; this.light(id,b); if (fm) { if (b) v='visible'; else v='hidden'; fm.visibility=v; fm.update(false,'visibility'); if (!b) for (k=0;k<i.children.length;k++) this.show(i.children[k],b); } } function MLight(id,b) { var i=this.items[id], on=i.on, z; if (b) z=10; else z=-10; on.zIndex=i.parent.zIndex+10+z; on.update(false,'zIndex'); } function MBody(b) { var s, i=this, bi, bg, br, bl, ft, tl, k; switch (b) { case 0: bi=i.bgImageOff; bg=i.bgColorOff; br=i.brColorOff; bl=i.blColorOff; ft=i.colorOff; tl=i.title; break; case 1: bi=i.bgImageOn; bg=i.bgColorOn; br=i.brColorOn; bl=i.blColorOn; ft=i.colorOn; tl=i.title; break; case 2: bi=null; bg=null; br=null; tl=null; bl=null; ft=null; break; } s="<table width="+(i.width+2*i.border)+" height="+(i.height+2*i.border)+" " +(br?"bgcolor="+br:"")+" cellpadding=0 cellspacing=0 border=0><tr>"; if (bl && b!=2) s+="<td width="+(i.border+7)+" align=right>"+"<table width=7 height="+i.height+" cellpadding=0 cellspacing=0 border=0><tr>"+"<td bgcolor="+bl+"><span style='"+i.style+"'>"+(!(op5|nn6)?"&nbsp;":"")+"</span></td>"+"</tr></table>"+"</td>"; if (b!=2) { s+="<td align=center>"+"<table width="+(i.width-(bl?i.border+7:0))+" height="+i.height+" cellpadding=0 cellspacing=0 border=0"+(!(op5|nn6)?" style='padding-left:"+(i.padding?i.padding:0)+"px'":"")+">"+"<tr><td "+(bg?"bgcolor="+bg:"")+(bi?" background='"+bi+"'":"")+(op5|nn6?" style='padding-left:"+(i.padding?i.padding:0)+"px'":"")+">"+(i.style?"<span style='"+i.style+"'>":""); s+=(ft?"<span style='color: "+ft+"'>":"")+(tl?tl:"&nbsp;")+"</span></span></td></tr></table>"+"</td>"; } else s+="<td>&nbsp;</td>"; s+="</tr></table>"; return s; } function MCount(i,c) { var p=i.parent; switch (p.view) { case 'horizontal': i.of.left=i.on.left=i.ev.left=c; i.of.top=i.on.top=i.ev.top=0; if (i.fm) switch (p.expand) { case 'top': i.fm.top=p.fm.top-p.fm.height-2*p.border-p.space; i.fm.left=p.fm.left+c; break; case 'bottom': i.fm.top=p.fm.top+p.fm.height+2*p.border+p.space; i.fm.left=p.fm.left+c; break; } c+=i.width+2*i.border+p.space; break; case 'vertical': i.of.left=i.on.left=i.ev.left=0; i.of.top=i.on.top=i.ev.top=c; if (i.fm) switch (p.expand) { case 'left': i.fm.top=p.fm.top+c; i.fm.left=p.fm.left-p.fm.width-2*p.border-p.space; break; case 'right': i.fm.top=p.fm.top+c; i.fm.left=p.fm.left+p.fm.width+2*p.border+p.space; break; } c+=i.height+2*i.border+p.space; } return c; } function MDraw(p) { var i, s="", k, c=0; p.fm.onmouseover=new Function("eval("+this.name+").active=eval("+this.name+").last"); p.fm.onmouseout=new Function("eval("+this.name+").exit(eval("+this.name+").last)"); p.fm.zIndex=p.zIndex; for (k=0;k<p.children.length;k++) { i=this.items[p.children[k]]; c=this.count(i,c); i.zIndex=p.zIndex+50; i.of.visibility=i.on.visibility=!i.visible?'hidden':null; i.of.zIndex=p.zIndex+15; i.of.body+=i.body(0); p.fm.add(i.of); i.on.zIndex=p.zIndex+10; i.on.body+=i.body(1); p.fm.add(i.on); i.ev.zIndex=p.zIndex+30; i.ev.body+=i.body(2); p.fm.add(i.ev); i.ev.onmouseover=new Function("eval("+this.name+").enter("+i.id+")"); i.ev.onmouseout=new Function("eval("+this.name+").exit("+i.id+")"); i.ev.onclick=new Function("eval("+this.name+").click("+i.id+")"); if (i.children.length>0) s+=this.draw(i); } return p.fm.build()+s; } function MAlign() { var ww=0, wh=0, mw=0, mh=0, k, i, fm=this.main.fm; if (ie4 && !op5) { ww=document.body.clientWidth; wh=document.body.clientHeight; } else if (nn4||nn6) { ww=window.innerWidth; wh=window.innerHeight; } else if (op5) { ww=screen.width; wh=screen.height; } if (this.align) switch (this.align) { case 'left': fm.left+=0; break; case 'center': fm.left+=Math.round((ww-fm.width)/2); break; case 'right': fm.left+=ww-fm.width; break; } if (this.valign) switch (this.valign) { case 'top': fm.top+=0; break; case 'middle': fm.top+=Math.round((wh-fm.height)/2); break; case 'bottom': fm.top+=wh-fm.height; break; } } function MResize() { history.go(0); } function MInit() { var n=this.main; this.malign(); document.write(this.draw(n)); for (var k=0;k<this.frames.length;k++) this.frames[k].link(); n.fm.visibility='visible'; n.fm.update(false,'visibility'); }

// *********************************** //

m=new Menu('m');
m.top=185; 		m.left=70;		m.zIndex=100;
m.border=2; 		m.padding=3; 		m.space=-1;
m.view='vertical'; 	m.expand='right';	m.delay=10;
m.align=null;		m.valign=null;
m.brColorOn='silver'; 	m.brColorOff='#d3d3d3';
m.bgColorOn='#cc3366'; 	m.bgColorOff='#990033';

//m.bgColorOn='#e0d58b'; 	m.bgColorOff='#3c6c39';
//m.blColorOn='#669933';m.blColorOff='#FFCC00';
m.colorOn='white'; 	m.colorOff='white';
m.style="font-family:Verdana,Arial,Helvetica; font-size:10px;";

m.main.view='horizontal'; 	m.main.expand='bottom';

L0=new MItem(m,'Aktualności', '',67,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
   L1=new MItem(m,'Ogłoszenia','index.html',100,20,L0);
   L1=new MItem(m,'Wydarzenia','wydarzenia.html',100,20,L0);
   L1=new MItem(m,'Zamówienia Publiczne','zamowienia.html',100,32,L0);
   L1=new MItem(m,'Oferty pracy','oferty_pracy.html',100,20,L0);
   L1=new MItem(m,'Linki','linki.html',100,20,L0);


L0=new MItem(m,'&nbsp;O nas', '',44,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
   L1=new MItem(m,'Kilka słów o nas','onas2.html',80,32,L0);
   L1=new MItem(m,'Rada Naukowa','radanaukowa.html',80,30,L0);
   L1=new MItem(m,'Komisja Dyscyplinarna','komisja_dyscyplinarna.html',80,30,L0);
   L1=new MItem(m,'Biegli','onas4.html',80,20,L0);
   L1=new MItem(m,'Nagrody','onas3.html',80,20,L0);
   L1=new MItem(m,'Schemat organizacyjny','javascript:window.open("pliki/schemat_organizacyjny_ios-pib.pdf")',80,30,L0);
   L1=new MItem(m,'Regulamin organizacyjny','javascript:window.open("regulamin-organizacyjny.html")',80,32,L0);
   L1=new MItem(m,'Statut','javascript:window.open("statut_ios.html")',80,20,L0);
   //L1=new MItem(m,'Zarządzenia','http://www.ios.edu.pl/pol/zarzadzenia.html',80,20,L0);
L0=new MItem(m,'&nbsp;Działalność', '',75,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
L1=new MItem(m,'Uprawnienia Instytutu','uprawnienia.html',100,30,L0);
L1=new MItem(m,'Akredytacja - System jakości','onas5.html',100,32,L0);
 L1=new MItem(m,'Opinia o wpływie nawozu na środowisko','wplyw_nawozu.pdf',100,35,L0);
 L1=new MItem(m,'Aprobaty techniczne','aprobaty.html',100,30,L0);
 L1=new MItem(m,'Hałas','',100,20,L0);
 L1.colorOn='white'; L0.colorOff='white';
  L2=new MItem(m,'Sprawozdania z badań interkalibracyjnych','javascript:window.open("http://www.ios.edu.pl/pol/sprawozdania.html")',125,40,L1);
  L2=new MItem(m,'Hałas - Ekrany akustyczne','http://www.ios.edu.pl/pol/pliki/EkranSynt.pdf',100,32,L1);
 L1=new MItem(m,'Badania odpadów','http://www.ios.edu.pl/pol/prace/badania.html',100,30,L0);
 L1=new MItem(m,'OFERTA Opracowania Dokumentacji Substancji i Preparatów Chemicznych i Produktów Biobójczych','http://www.ios.edu.pl/pol/prace/oferta_opracowania_dok_pl.pdf',100,100,L0);
 L1=new MItem(m,'Wybrane prace Instytutu','dzialalnosc3.html',100,32,L0);
 L1=new MItem(m,'Współpraca międzynarodowa','wspolpraca.html',100,30,L0);
 L1=new MItem(m,'Konferencje, Seminaria, Warsztaty, Sympozja, Szkolenia','dzialalnosc4.html',100,65,L0);


L0=new MItem(m,'&nbsp;Zakłady', '',54,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
 L1=new MItem(m,'Krajowy Ośrodek Bilansowania i Zarządzania Emisjami','http://www.kobize.pl',125,60,L0);
 L1.colorOn='white';	L0.colorOff='white';
 
 L1=new MItem(m,'Ośrodek Monitoringu Środowiska','',125,30,L0);
 L1.colorOn='white';	L0.colorOff='white';
   L2=new MItem(m,'Zakład Monitoringu Zanieczyszczenia Powietrza','http://www.ios.edu.pl/pol/zaklady/bd.html',100,60,L1);
   L2=new MItem(m,'Zakład Akustyki Środowiska - tylko przeglądarka Microsoft Internet Explorer','http://www.ios.edu.pl/bh',100,70,L1);
   L2=new MItem(m,'Laboratorium Monitoringu Środowiska','http://www.ios.edu.pl/pol/zaklady/bl.html',100,40,L1);
   L2=new MItem(m,'Stacja Kompleksowego Monitoringu Środowiska','http://www.ios.edu.pl/pol/zaklady/puszcza/index.html',100,50,L1);
   L2=new MItem(m,'Zakład Metod Oceny i Monitoringu Wód','http://www.jeziora.ios.edu.pl',100,40,L1);

 L1=new MItem(m,'Ośrodek Ochrony Wód','',125,30,L0);
 L1.colorOn='white';	L0.colorOff='white';
   L2=new MItem(m,'Ośrodek Ochrony Wód','http://www.ios.edu.pl/pol/zaklady/ow.html',100,30,L1);
   L2=new MItem(m,'Zakład Systemów Ochrony Wód','http://www.ios.edu.pl/pol/zaklady/bs.html',100,30,L1);
   L2=new MItem(m,'Zakład Technologii Ścieków i Biologii Sanitarnej','http://www.ios.edu.pl/pol/zaklady/bw.html',100,60,L1);
   L2=new MItem(m,'Zespół d/s Normalizacji i Aprobat Technicznych','http://www.ios.edu.pl/pol/zaklady/zn.html',100,50,L1);
 L1=new MItem(m,'Ośrodek Ochrony Przyrody i Krajobrazu','',125,30,L0);
 L1.colorOn='white';	L0.colorOff='white';
   L2=new MItem(m,'Zakład Ochrony Przyrody i Krajobrazu','http://www.ios.edu.pl/pol/zaklady/bo.html',100,40,L1);
 L1=new MItem(m,'Ośrodek Zrównoważonego Rozwoju','http://www.ios.edu.pl/pol/zaklady/or.html',125,40,L0);
 L1.colorOn='white';	L0.colorOff='white';
   L2=new MItem(m,'Zakład Ochrony Klimatu','http://www.ios.edu.pl/pol/zaklady/bc.html',100,30,L1);
   L2=new MItem(m,'Zakład Polityki Ekologicznej','http://www.ios.edu.pl/pol/zaklady/be.html',100,30,L1);
 L1=new MItem(m,'Ośrodek Ochrony Ziemi i Gospodarki Odpadami','',125,40,L0);
 L1.colorOn='white';	L0.colorOff='white';
   L2=new MItem(m,'Zakład Ochrony Ziemi','http://www.ios.edu.pl/pol/zaklady/bz.html',100,30,L1);
   L2=new MItem(m,'Zakład Gospodarki Odpadami','http://www.ios.edu.pl/pol/zaklady/bg.html',100,40,L1);
   L2=new MItem(m,'Zakład Ocen Środowiskowych','http://www.ios.edu.pl/pol/zaklady/bm.html',100,60,L1);
   L2=new MItem(m,'Zakład Oceny Ryzyka Środowiskowego','http://www.ios.edu.pl/bp',100,40,L1);
 //L1=new MItem(m,'Ośrodek d/s Edukacji Ekologicznej','http://www.ios.edu.pl/pol/zaklady/po.html',125,30,L0);
 L1=new MItem(m,'Oddział we Wrocławiu','http://www.ios.edu.pl/pol/zaklady/oddz2.html',125,30,L0);

L0=new MItem(m,'Monitoring', '',65,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
 L1=new MItem(m,'Sieć Podstawowa','javascript:window.open("http://www.ios.edu.pl/pol/zaklady/siec/index.html")',90,30,L0);
 L1=new MItem(m,'Puszcza Borecka','javascript:window.open("http://www.ios.edu.pl/pol/zaklady/puszcza/index.html")',90,30,L0);
 L1=new MItem(m,'IOŚ-EPA','javascript:window.open("http://www.ios.edu.pl/pol/zaklady/epa/index.html")',90,20,L0);
L0=new MItem(m,'Bazy Danych', '',75,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
 L1=new MItem(m,'Obszary Chronione','javascript:window.open("http://www.ios.edu.pl/pol/obszary_chronione.html")',100,30,L0);
 L1=new MItem(m,'Roczne emisje zanieczyszczeń do powietrza','javascript:window.open("http://emissions.ios.edu.pl")',100,50,L0);

L0=new MItem(m,'Biblioteka Naukowa', '',115,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
 L1=new MItem(m,'Zbiory','biblioteka1.html',110,20,L0);
 L1=new MItem(m,'Udostępnianie','biblioteka2.html',110,20,L0);
 L1=new MItem(m,'Adres','biblioteka2.html#adres',110,20,L0);
 L1=new MItem(m,'Czasopisma zagraniczne','biblioteka3.html',110,30,L0);
 L1=new MItem(m,'Czasopisma polskie','biblioteka4.html',110,30,L0);
 L1=new MItem(m,'Bazy i czasopisma elektroniczne','biblioteka5.html',110,30,L0);
 L1=new MItem(m,'Polecane adresy www','biblioteka6.html',110,30,L0);


L0=new MItem(m,'Wydawnictwa', '',77,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
 L1=new MItem(m,'Wykaz publikacji / Zamówienie','wydawnictwa1.html',130,30,L0);
 L1=new MItem(m,'Czasopismo "Ochrona Środowiska i Zasobów Naturalnych"','ochrona.html',130,50,L0);
 L1=new MItem(m,'Zaproszenie do publikacji artykułów w czasopiśmie Instytutu','ogloszenie_ochrona_strona_ios.pdf',130,50,L0);

L0=new MItem(m,'&nbsp;Kontakt', '',54,16);
L0.brColorOn='silver';	L0.brColorOff='black';
L0.colorOn='white';	L0.colorOff='white';
 L1=new MItem(m,'Dyrekcja','dyrekcja.html',90,35,L0);
 L1=new MItem(m,'Komórki organizacyjne','komorki.html',90,35,L0);
 L1=new MItem(m,'Dane teleadresowe','kontakt.html',90,35,L0);
 L1=new MItem(m,'Oddział we Wrocławiu','oddz_wroclaw.html',90,35,L0);
 L1=new MItem(m,'Webmaster','mailto:webmaster@ios.edu.pl?Subject=Problem ze strona www',90,20,L0);


m.init();

