function show_image(image_url, window_name, width, height)
{
	window.open(image_url, 
				window_name, 
				'top=50,left=100,width='+(width+20)+',height='+(height+20)+',resizable=yes,scrollbars=no,status=no');
}
