function enlarge(link){
	var win = window.open("", "_blank", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=400,height=600")
	win.document.write('<html><head><title>Larger Image</title></head><body bgcolor=\"#DFF4B6\"><center><img src="' + link + '"><form method=get act=""><input type=button value="Close" onClick="self.close()"></form></center></body></html>  ')
	win.document.close()
}

