// JavaScript Documentfunction Viewer(IDPhoto,IDProd)
function Viewer(IDPhoto)
{
AjaxCall('Pic_Viewer',['IDPhoto='+IDPhoto]);	
}

function Pic_Viewer(ajaxRequest)
{
_ContainerPhoto=document.getElementById('ContainerPhoto');
_ContainerPhoto.innerHTML = ajaxRequest.responseText;
}
