<!--
function PopIt(img, title, width, height){  

popup = window.open("","popDialog","height=" + height + ",width=" + width + ",scrollbars=no,menubar=no,resizable=no")  
popup.document.write("<HEAD>\n<TITLE>" + title + "</TITLE>\n</HEAD>\n\n<body  topmargin=0 leftmargin=0>\n");
popup.document.write("<img border=0 src=\"" + img + "\">");
//popup.document.close()


}


function PopUp(url, width, height, resizable) {

        if(!width) width=760;
        if(!height) height=480;
        if(!resizable) resizable='yes';
        searchWin = window.open(url,'','left=15,top=15,scrollbars=yes,resizable='+resizable+',width='+width+',height='+height+',status=no,location=no,toolbar=no');


}

function PopUpNo(url) {

        SsearchWin = window.open(url,'esempio','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no, width=700,height=400');


}
//-->

