function openwin(theURL,w,h,lf,tp,sx) { // kompaktní + scrollbar + resizable
	WName='win'+sx;
	WName=window.open(theURL,'ow' + sx + '','width=' + w + ',height=' + h + ',left=' + lf + ',top=' + tp + ',scrollbars=1,resizable=1,toolbar=0,menubar=0,location=0,status=0,directories=0');
  WName.focus();
}
function autowindowsize(idcko,topborder,leftborder,stred) {
	pic = document.getElementById(idcko);
	var xImg = pic.width+leftborder;
	var yImg = pic.height+topborder;
	window.resizeTo(xImg,yImg);
	if (stred) window.moveTo((screen.width-xImg)/2,(screen.height-yImg)/2);
}

$(document).ready(function(){
	var golink = function(path) {
		$(location).attr(
			'href'
			, $(path).attr('href')
		);
	}
	if ($('#fotodetail').length) {
		$(document).keydown(function(e){
				var keyCode = e.keyCode || e.which;
		    if (keyCode == 37) {
						golink('div.paging a.link_prev');
		    }	else if (keyCode == 39) {
						golink('div.paging a.link_next');
		    } else if (keyCode == 36) {
						golink('div.newgal a:first');
				}
		});
	}
})

