// JavaScript Document
function otvoriGi(slika,sirina,visina) {
	ekran_x = ((screen.width/2) - (sirina/2));
	ekran_y = ((screen.height/2) - (visina/2));
	dimenzije="height="+visina+",width="+sirina;
	osobine="menubar=no,scrollbars=no,status=no,toolbar=no,";
	polozaj="left=" + ekran_x + ",top=" + ekran_y;
	wpopup=window.open ('','popup',dimenzije+osobine+polozaj);
	wpopup.document.write('<html><head><title>Restoran Trac, Milesevska 39, Beograd</title></head><body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">');
	wpopup.document.write("<a href='javascript:self.close();'><img src='");
	wpopup.document.write(slika);
	wpopup.document.write("' border='0' alt='Restoran Trac, Milesevska 39, Beograd'></img></a>");
	wpopup.document.write('</body></html>');	
	wpopup.document.close();
}