function openwin(url,width,height) {
	width=width+15
	height=height+15
	winopts="width="+width+",height="+height+",status=no,location=no,menubar=no,scrollbars=0,toolbar=no,resizable=no,screenX=100,screenY=100"
	var w = window.open("","Big_image",winopts)
	var d = w.document
	d.write('<html><body><img src="'+url+'" onClick="window.close();" border="0"></body></html>')
	d.close()
	return true
}

