
function getCookieDef(name,def)
{
	if (name == null || name.length == 0) {
		return def;
	}
		
	var str = document.cookie;
	var begin = -1;
	var end = -1;
	
	if ((begin = str.indexOf(name + "=")) != -1) {
		begin += name.length;
		
		if (str.charAt(begin) == ';') {
			return def;
		}

		end = str.indexOf(";",begin);
		
		if (end == -1) {
			end = str.length;
		}
			
		if (end != -1) {
			var ret = str.substring(begin + 1,end);
			return (ret.length > 0 ? ret : def);
		}
	}
	
	return def;
}

function update_navi()
{
	// default: welcome.html -> 29
	// default: news.html -> 10
	open_doc(content,getCookieDef("COOKIE_PAGE_INDEX",10));
}

function open_livebox()
{
	// save for refresh in opera (really funny browser)
	window.top.document.cookie = ("COOKIE_PAGE_INDEX=" + 36);
}

function open_doc(wnd,index)
{
	var link = new Array(
		"organization.html", "O nas &#187; Organizacja",									// 0
		"staff.html", "O nas &#187; Personel",												// 1
		"publications.html", "O nas &#187; Publikacje",										// 2
		"locality.html", "O nas &#187; Lokalizacja",										// 3
		"contact.html", "O nas &#187; Kontakt",												// 4
		"recrutation.html", "Oferta &#187; Rekrutacja",										// 5
		"groups.html", "Oferta &#187; Grupy",												// 6
		"schedule.html", "Oferta &#187; Plan dnia",											// 7
		"education.html", "Oferta &#187; Programy",											// 8
		"additions.html", "Oferta &#187; Zajęcia dodatkowe",								// 9
		"news.html", "Aktualności",															// 10
		"workshop.html", "Galeria &#187; Prace dzieci",										// 11
		"photos.html", "Galeria &#187; Foto album",											// 12
		"adaptation.html", "Poradnik &#187; Adaptacja",										// 13
		"archive.html", "Archiwum",															// 14
		"gallery01.html", "Galeria &#187; Foto album &#187; Pasowanie na przedszkolaka",	// 15
		"gallery02.html", "Galeria &#187; Foto album &#187; Piknik ekologiczny",			// 16
		"gallery03.html", "Galeria &#187; Foto album &#187; Co pływa, a co tonie?",			// 17
		"gallery04.html", "Galeria &#187; Foto album &#187; Góra Grosza",					// 18
		"organization.html", "O nas &#187; Organizacja",									// 19
		"partners.html", "O nas &#187; Współpraca",											// 20
		"gallery05.html", "Galeria &#187; Foto album &#187; Idą Święta",					// 21
		"gallery06.html", "Galeria &#187; Foto album &#187; Zawody sportowe",				// 22
		"gallery07.html", "Galeria &#187; Foto album &#187; Jasełka - grupa I",				// 23
		"gallery08.html", "Galeria &#187; Foto album &#187; Jasełka - grupa II",			// 24
		"gallery09.html", "Galeria &#187; Foto album &#187; Jasełka - grupa III",			// 25
		"gallery10.html", "Galeria &#187; Foto album &#187; Klub Seniora",					// 26
		"adhd.html", "Poradnik &#187; Dziecko nadpobudliwe",								// 27
		"payment.html", "Oferta &#187; Opłaty",												// 28
		"welcome.html", "Witamy!",															// 29
		"pro.html", "O nas &#187; Specjaliści",												// 30
		"gallery11.html", "Galeria &#187; Foto album &#187; Wielki Bal Księżniczek",		// 31
		"gallery12.html", "Galeria &#187; Foto album &#187; Powitanie Wiosny - grupa III",	// 32
		"gallery13.html", "Galeria &#187; Foto album &#187; Pasowanie na przedszkolaka",	// 33
		"gallery14.html", "Galeria &#187; Foto album &#187; Jesienny musical",				// 34
		"gallery15.html", "Galeria &#187; Foto album &#187; Rakieta kosmiczna grupy II",	// 35
		"livebox.html", "Galeria &#187; Livebox"											// 36
	);
	
	// show page and set location
	if (wnd != null) {
		wnd.location.href = link[index * 2];
	}
	
	window.top.document.getElementById("navi").innerHTML = ("<p>" + link[(index * 2) + 1] + "</p>");
	
	// save for refresh in opera (really funny browser)
	window.top.document.cookie = ("COOKIE_PAGE_INDEX=" + index);
}

function open_forum()
{
	window.open("http://www.p219.waw.pl/forum");
}

function open_link(url)
{
	window.open(url);
}

