function newwindow(url)
{
	var nwindow; 
	nwindow = window.open('','name','height=700,width=800');
	
	var tmp = nwindow.document;
	tmp.write('<html><head><title>popup</title>');
	tmp.write('</head><body><p><img src=' + url + '></p>');
	tmp.write('<p align=center><a href="javascript:self.close()">Close this window</a></p>');
	tmp.write('</body></html>');
	tmp.close();
}