function openBigImage(image, title, width, height)
{
    imageWin = window.open("", "_blank", "width=" + width + ",height=" + height + ",toolbar=no,status=no,menubar=no,resizable=no");
	
	imageWin.document.write("<html><head><title>" + title);
	imageWin.document.write("</title></head><body leftmargin='0' topmargin='0'>");
	imageWin.document.write("<img src='" + image + "'/>");
	imageWin.document.write("</body></html>");	

	imageWin.document.close(); 

    return true;
}
