//		******** Wyswietlarka zdjec / Image player********
//
//		Autor: Daeris (Andy & Candy) 2003.08
//		E-mail: daeris@draconia.pl
//		Serwis: http://www.cafebizarre.waw.pl
//
//		Mozesz wykozystac, ale prosze najpierw zapytaj...
//		You can use it, but please ask first...
//
//		Doskonala nie jest, ale dziala :-)
//		It's not perfect, but it works :-)
//
//		zmienne/variables:
//
//		poz - numer zdjecia do wyswietlenia/photo index
//		serie - nazwa serii zdjec/name of photo serie
//		stop - ile zdjec w serii/how much photos in serie
//
//		konwencja nazewnicza zdjec/photo file naming convention:
//		serie_poz.jpg

function display(poz,serie,stop)
	{
	document.open()
	document.write("<html><body style='background-color: #000000'><script language='JavaScript' type='text/javascript'>var index = ");
	document.write(poz);
	document.write("; function forw() {index++; if (index>");
	document.write(stop);
	document.write(") {index = 1;} imageurl = 'foto/");
	document.write(serie);
	document.write("_' + index + '.jpg'; self.document.images['display'].src = imageurl;} function back() {index--; if (index<=0) {index = ");
	document.write(stop);
	document.write(";} imageurl = 'foto/");
	document.write(serie);
	document.write("_' + index + '.jpg'; self.document.images['display'].src = imageurl;} function home() {window.status = 'CafeBizarre';}</script><table border=0 cellspacing=0 cellpadding=0><tr><td rowspan=2><img src='images/foto_navbar_logo.jpg' alt='CafeBizarre'></td><td colspan=4><img src='images/foto_navbar_gora.jpg' alt='CafeBizarre'></td></tr><tr><td><img src='images/foto_navbar_back.jpg' alt='&lt;&lt;&lt;&lt;&lt;' style='cursor:hand' onClick='back(); return true;'></td><td><a href='");
	document.write(serie);
	document.write(".shtml' onMouseOver='home(); return true;'><img src='images/foto_navbar_home.jpg' alt='Home' border=0></a></td><td><img src='images/foto_navbar_forw.jpg' alt='&gt;&gt;&gt;&gt;&gt;'  style='cursor:hand' onClick='forw(); return true;'></td><td><img src='images/foto_navbar_dol.jpg' alt='CafeBizarre'></td></tr></table><br><img src='foto/");
	document.write(serie);
	document.write("_");
	document.write(poz);
	document.write(".jpg' alt='Galeria Fotografii CafeBizarre' name='display'><script language='JavaScript' type='text/javascript'>window.status = 'CafeBizarre'</script></body></html>");
	document.close()
	}

//		******** Koniec Wyswietlarki ********

//		******** Podmiana tekstu w wierszu statusu ********
//
//		Autor: Stefan Koch
//		Zrodlo/Source: http://webmaster.helion.pl/kurshtml/

	function moveover(txt) {
		window.status = txt;
		setTimeout("erase()",3000);
	}

	function erase() {
		window.status="CafeBizarre";
	}

//		******** Koniec podmiany ********
