 /*
.-----------------------------------------------------------------------------.
|  Software: CMS SmartSite - immagine.js                                    |
|   Version: 0.90                                                             |
|   Last modified: 2011.01.09                                                 |
|   Info: http://www.dotflorence.com  (webtech@dotflorence.com)               |
| --------------------------------------------------------------------------- | */

function change_image(obj,thb,fld){
    if (fld!='') fld = fld+"/";
    img = document.getElementById(obj).value;
    if (img=='') photo_image = 'img/adm/blob.gif';
    else photo_image = 'image/'+fld+document.getElementById(obj).value;
    if (thb!='') document.getElementById(thb).style.backgroundImage = "url('"+photo_image+"')";
}
function change_icon(obj,thb,fld){
    if (fld!='') fld = fld+"/";
    img = document.getElementById(obj).value;
    if (img=='') photo_image = 'img/adm/blob.gif';
    else photo_image = 'image/'+fld+document.getElementById(obj).value;
    if (thb!='') document.getElementById(thb).style.backgroundImage = "url('"+photo_image+"')";
}

