function displayPhotoProduit(photoSrc, relPath) {
    $('pdtMainPhoto').src = relPath+photoSrc;
}

function displayMainPhotoProduit(photoSrc2, relPath) {
    var targetDiv = $('photoList');
    
    var eltDivPhoto = document.createElement('div');
    eltDivPhoto.id="mainPhoto";
    eltDivPhoto.className="mainPhoto";
    eltDivPhoto.innerHTML = '&nbsp;';
    targetDiv.appendChild(eltDivPhoto);
    
    photoSrc = $('pdtMainPhoto').src;
    var tmpName = photoSrc.split('/');
    var src = tmpName[tmpName.length-1];
    var oImage = new Image();
    oImage.src = relPath+'data/catalogue/500x375/'+src+'';
    oImage.onload = function() {
        eltDivPhoto.innerHTML = '<img src="'+relPath+'data/catalogue/500x375/'+src+'" alt="photo_produit" />';
        
    }
    
}

function removeMainPhotoProduit() {
    Element.remove('mainPhoto');
}

function displayPreviewProduit(photoSrc, relPath, pdtId) {
    var targetDiv = $('pdtRow_'+pdtId);
    
    var eltDivPhoto = document.createElement('div');
    eltDivPhoto.id="mainPhoto";
    eltDivPhoto.className="mainPhoto";
    eltDivPhoto.innerHTML = '&nbsp;';
    targetDiv.appendChild(eltDivPhoto);
    
    var oImage = new Image();
    oImage.src = relPath+'data/catalogue/200x150/'+photoSrc+'';
    oImage.onload = function() {
        eltDivPhoto.innerHTML = '<img src="'+relPath+'data/catalogue/200x150/'+photoSrc+'" alt="photo_produit" />';
        
    }
    
}

function removePreviewProduit() {
    Element.remove('mainPhoto');
}
