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