﻿// --------------------------------------------------------------------------------------
// Details
// -------
// Author:          Stoner
// Date Created:    4/09/2008
// Function:        Ajax trickery for Modal Popup details
//
// --------------------------------------------------------------------------------------

function GetDetails(productID) 
{        
    PageMethods.DisplayProductDetails(productID,OnGetDetailsComplete,OnGetDetailsError);
}

function OnGetDetailsComplete(result,methodName)
{
    document.getElementsByName('detailsText').innerText = result;   
}

function OnGetDetailsError(error,userContext,methodName)
{
    if(error !== null) 
    {
        //document.getElementById("ctl00_cphZone2_ctl00_panDetails").attributes("text") = "Error Getting Product Details"
        document.getElementById('detailsText').innerHTML = "Error Getting Product Details";
    }
}




