var newwindow = '';


function openPhoto(path, url_name, gallery) {

	var params = "path=" + chnEncode(path);
	//var result = parseResult(loadResultOnly("/" + PATH + "scm/photo_size", params));
	//alert(path);

	//window.open("http://hctemp.humlak.cz/" + PATH + "photo.php?path=" + path + "&url_name=" + url_name, "photo", "width=" + result[0] + "px, height=" + result[1] + "px, noresizable, left=100px, top=100px");

//puvodni	window.open("http://hctemp.humlak.cz/" + PATH + "photo.php?path=" + path + "&url_name=" + url_name + "&gallery=" + gallery, "photo", "width=814px, height=704px, left=100px, top=100px");
//pridano
    if (!newwindow.closed && newwindow.location) {
	newwindow.location.href = "http://www.jendaf.cz/" + PATH + "photo.php?path=" + path + "&url_name=" + url_name + "&gallery=" + gallery;
        }
    else {
        newwindow=window.open("http://www.jendaf.cz/" + PATH + "photo.php?path=" + path + "&url_name=" + url_name + "&gallery=" + gallery, "photo", "width=814px, height=704px, left=100px, top=100px");
        if (!newwindow.opener) newwindow.opener = self;
 	}
    if (window.focus) {newwindow.focus()}
//pridano

}
