function OpenPhotoWindow(imagePath, name, width, height) {
	var top = (screen.height - height)/2;
	var left = (screen.width - width)/2;
	wnd = window.open("photoview.php?imagePath="+imagePath+"&amp;name="+name, name, "scrollbars=no,width="+width+",height="+height);
	wnd.moveTo(left, top);
}

function m(s,f) {
	var d = '.';
	if (f == '') d = '';
	var parts = new Array('to:', f, d, s, '@', 'visimpe');
	self.location = 'mail' + parts.join('') + 'x.cz';
}

