var newwindow='';
function pop_slike(slika,sirina,visina)
{
	try
	{
		if (newwindow.location && !newwindow.closed) { newwindow.close(); }
	} 
	catch (e)
	{
	}

	newwindow=window.open('','pic','width='+sirina+',height='+visina+',resizable=1,dependent=1,scrollbars=1,alwaysRaised=1,menubar=0');
	var iks=(screen.width-sirina)/2;
	var ips=(screen.height-visina)/2;
	newwindow.moveTo(iks,ips);

	newwindow.document.open();
	newwindow.document.write('<html><head><title></title></head><body style="margin:0px; overflow:auto"><center>');
	newwindow.document.write('<img src="'+slika+'?'+Math.random()+'"></img>');
	newwindow.document.write('</center></body></html>');
	newwindow.document.close();

	if (navigator.appName!="Microsoft Internet Explorer")
	{
		newwindow.innerWidth=sirina;
		newwindow.innerHeight=visina;
		if(newwindow.outerWidth>=screen.availWidth)  newwindow.outerWidth=screen.availWidth;
		if(newwindow.outerHeight>=screen.availHeight) newwindow.outerHeight=screen.availHeight;
	}
	if (window.focus) newwindow.focus();
}
