function galeria(src, w, h)
{ 
	if(window.screen)
	{ 
        aw = screen.availWidth; 
        ah = screen.availHeight; 
	} else
	{ 
        aw = 800; 
        ah = 600; 
 	} 

	settings=
	"left=" + (aw-w)/2 + ","
	+"top=" + (ah-h)/2 + ","
	+"screenX=" + (aw-w)/2 + ","
	+"screenY=" + (ah-h)/2 + ","
	+"width=" + w + "," 
	+"height=" + h + ","
	+"innerWidth=" + w + ","
	+"innerHeight=" + h + ","
	+"toolbar=no,"
	+"location=no," 
	+"directories=no,"
	+"status=no,"
	+"menubar=no,"
	+"scrollbars=auto," 
	+"resizable=no"
	noweOkienko = window.open("",'',settings);
	noweOkienko.document.open();
	noweOkienko.document.clear();
	noweOkienko.document.write( 
	"<html><head><title>Galeria</title></head>\n" 
	+"<body bgcolor=black topmargin=0 marginwidth=0 leftmargin=0 marginheight=0><img src=" + src + "></body>\n" 
	+"</html>" ); 
	noweOkienko.document.close();
	noweOkienko.focus();
}

