function popwin (url, title, width, height) {
	if (typeof popupPictureWindow != 'undefined' && !popupPictureWindow.closed) {
		popupPictureWindow.close();
	}
	popupPictureWindow=open('','image','width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=1');
	popupPictureWindow.document.writeln('<html><body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 bgcolor="#FFFFFF">');
	popupPictureWindow.document.writeln("<title>" + title + "</title>");
	popupPictureWindow.document.writeln('<a href="javascript:self.close()"><img src="'+url+'" border=0" alt="Close"></a>');
	popupPictureWindow.document.writeln('</body></html>');
	popupPictureWindow.close();
	popupPictureWindow.focus();
}

function popPicWin (url, title, width, height) {
	if (typeof popupPictureWindow != 'undefined' && !popupPictureWindow.closed) {
		popupPictureWindow.close();
	}
	popupPictureWindow=open('','image','width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=1');
	popupPictureWindow.document.writeln('<html><head><title>' + title + '</title></head><body leftmargin="0" topmargin="0" bgcolor="white"><a href=\'javascript:self.close()\'><img src="' + url + '" border="0" alt="Bezár"></a></body></html>');
	popupPictureWindow.document.close();
}

function popPhpThumbPicWin (pictureLocation, title, width, height, phpThumbLocation) {
	if (typeof popupPictureWindow != 'undefined' && !popupPictureWindow.closed) {
		popupPictureWindow.close();
	}
	var visibleWidth = screen.width - 10;
	var visibleHeight = screen.height - 70;
	var url = pictureLocation;
	
	if (width > visibleWidth || height > visibleHeight)	{
		if (width * visibleHeight > visibleWidth * height) {
			height = Math.round(visibleWidth * height / width);
			width = visibleWidth;
		} else {
			width = Math.round(visibleHeight * width / height);
			height = visibleHeight;
		}
		url = phpThumbLocation + '?src=' + pictureLocation + '&w=' + width + '&h=' + height;
	}
	
	popupPictureWindow=open('','image','width=' + width + ',height=' + height + ',toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=auto,resizable=1');
	popupPictureWindow.document.writeln('<html><head><title>' + title + '</title></head><body leftmargin="0" topmargin="0" bgcolor="white"><a href=\'javascript:self.close()\'><img src="' + url + '" border="0" alt="Bezár"></a></body></html>');
	popupPictureWindow.document.close();
}

