var agt    = navigator.userAgent.toLowerCase();
var is_ie  = (agt.indexOf("msie") != -1);

var url    = self.location.hostname;
var okno   = '';


/**
 * OKNO S FOTKOU
 * 
 */
function openPhoto(path, name, width, height)
{
	if (typeof(okno.document) == 'object') okno.close(); 

	okno = window.open('http://'+url+'/inc/fotka.php?path='+path+'&name='+encodeURIComponent(name)+'', 'fotka', 'left=50, top=50, width='+width+', height='+height+', toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no');

	return false;
}
