function pop(url)
{
	newin=window.open('','pop','width=520,height=400,status=1');
	var tmp = newin.document;
	tmp.write('<html><head><title>ISSCO popup</title><link rel="stylesheet" href="www.issco.it/css/screen.css"></head>');
	tmp.write('<body bgcolor="#ffffff""><a href="javascript:self.close()" title="chiudi"><img src="');
	tmp.write(url);
	tmp.write('" border="0" alt="chiudi"></a></body></html>');
	tmp.close();
	if (window.focus) {newin.focus()}
	return false;
}
