function openpic(image, width, height, title)
{
	var tx="<html><title>"+title+"</title><body leftmargin='4' topmargin='4' marginwidth='4' marginheight='4'><a href='javascript:window.parent.close();'><img src='"+image+"' border='0' alt='Bezárás'></a></body></html>";
	ImageWindow=window.open("", "newwin",config="left=5,top=5,width="+(width+8)+",height="+(height+8)+",toolbar=0,scrollbars=0,menubar=0");
	ImageWindow.document.write(tx);
	ImageWindow.document.close();
	ImageWindow.focus();
}
