function showImage(url, title, width, height) {
	if (!title) title = 'Valokuva';
	imageWin = window.open('photoWin', '', 'width=' + width + ',height=' + height + ',status=0,location=0,toolbar=0,menubar=0,resizable=0,scrollbars=0');
	imageWin.document.write('<html>\n<head>\n<title>' + title + '</title>\n</head>\n');
	imageWin.document.write('<body topmargin="0" leftmargin="0">\n<img src="' + url + '" border="0" alt="' + title + '" onclick="window.close()" />\n</body>\n</html>');
	imageWin.document.close();
}

function ajaxUpdate(container_id, action, params) {
	if (!params) {
		params = 'ajaxRequest=true';
	} else {
		params = params + '&ajaxRequest=true';
	}
	jQuery.ajax({
		url: action,
		type: "get",
		data: params,
		success: function(response) {
			jQuery('#' + container_id).html(response);
		}
	});
}

