var popup;

function popwin(url,win_name,width,height) {
    popup = window.open(url,win_name,'status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height);
    popup.focus(true);
	return false;
}

function popImage(img_src,title,desc,width,height) {
    popup = window.open('','pop_image','status=no,toolbar=no,location=no,menubar=no,scrollbars=yes,resizable=yes,width='+width+',height='+height);
    popup.focus(true);

	content=	'<html>'+"\n"+
				'<head>'+"\n"+
				'<title>Pratomax - immagine</title>'+"\n"+
				'<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">'+"\n"+
				'<style type="text/css">'+"\n"+
				'<!--'+"\n"+
				'body {'+"\n"+
				'	margin-left: 10px;'+"\n"+
				'	margin-top: 10px;'+"\n"+
				'	margin-right: 10px;'+"\n"+
				'	margin-bottom: 10px;'+"\n"+
				'}'+"\n"+
				'p,'+"\n"+
				'body {'+"\n"+
				'	font-family: Verdana, Arial, Helvetica, sans-serif;'+"\n"+
				'	font-size: 12px;'+"\n"+
				'	text-transform: none;'+"\n"+
				'	color: #55555;'+"\n"+
				'	text-align: center;'+"\n"+
				'}'+"\n"+
				'-->'+"\n"+
				'</style>'+"\n"+
				'</head>'+"\n"+
				'<body>'+"\n"+
				'<div style="text-align:center;">'+"\n"+
				'<a href="#" onClick="javascript:window.close()"><img src="#" id="image" border="0"/></a>'+"\n"+
				'<p id="desc"></p>'+"\n"+
				'<p><a href="#" onClick="javascript:window.close()">Chiudi</a></p>'+"\n"+
				'</div>'+"\n"+
				'</body>'+"\n"+
				'</html>'+"\n";
	popup.document.write(content);
	popup.document.close();

	popup.document.getElementById('image').src=img_src;
	popup.document.title='PRATOMAX.IT - '+title;
	popup.document.getElementById('desc').innerHTML=desc;
	//setTimeout('changeImage("'+img_src+'","'+title+'","'+desc+'")',500);
	return false;
}

function buildAddress(part1, part2) {
	return "mailto:" + part1 + "@" + part2;
}
