// JavaScript Document
function popup(url,height,width)
{
	newWin = window.open(url,"NewWin","scrollbars=no, height=" + height + "px, width=" + width + "px");
	newWin.focus();
}
function popupintervista(url,height,width)
{
	newWin = window.open(url,"Intervista","scrollbars=yes, height=" + height + "px, width=" + width + "px");
	newWin.focus();
}
function popupfoto(url,height,width)
{
	newWin = window.open(url,"NewWin","scrollbars=yes, height=" + height + "px, width=" + width + "px");
	newWin.focus();
}