product_show = new Image();
product_show.src = "/sustainability/PublishingImages/products_show.gif";	

product_hide = new Image();
product_hide.src = "/sustainability/PublishingImages/products_hide.gif";

	
var divon = "";
var imgon = "";
function ShowDescription(divid,img)
{     
    var theDiv = document.getElementById(divid);    
    
    if (theDiv.style.display == "none")
    {
        document.images[img].src = eval("product_hide.src");
        theDiv.style.display="";
        //theDiv.style.position="";
        theDiv = document.getElementById(divon);
        if (theDiv) 
        {
            theDiv.style.display = "none";
            //theDiv.style.position = "absolute";
            document.images[imgon].src = eval("product_show.src");
            
        }
        
        divon = divid;        
        imgon = img
    }  
    else
    {
        document.images[img].src = eval("product_show.src");
        theDiv.style.display = "none";
        //theDiv.style.position = "absolute";
        divon = "";   
        imgon = "";
    }
    
}   

