/***
 * si puņ ridefinire nel sito chiamandola popThumb per aprire
 * una popup con lo stile del sito
 ***/ 
function popThumb (theURL,w,h,margin) {
    //alert(theURL);
    var htmlUrl = '/it/pop_download_foto.php?ew_zoom=';
    w += margin;
    h += margin;
    var features = 'width='+w+',height='+h;
    //alert(features);
    var win = window.open(htmlUrl+theURL,'THUMBNAIL',features);
    win.focus();
    return(false);
} // popThumb

