function openImageWindow(url,title,img_width,img_height)
{
	imgwin=window.open("", "image_win", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=0,left=0,width="+img_width+",height="+img_height);
	imgwin.close();
	imgwin=window.open("", "image_win", "toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,top=0,left=0,width="+img_width+",height="+img_height);

	imgwin.document.writeln('<html><head><title>'+title+'</title><link rel="stylesheet" type="text/css" href="/style-imgwin.css"></head><body><a href="javascript: self.close()"><img src="'+url+'" width="'+img_width+'" height="'+img_height+'"></a></body></html>');
	imgwin.focus();
}
