// #########  End Product Per Page View 12,24,36 Drop Down box   ######### //
function showProductTip_Layer(proid)
{
    dcsMultiTrack('DCS.dcsuri', '/shopproductdetail.php','WT.ti', proid);

    var url = "shopproductdetail.php";
    var params = "product_id="+proid;
    var showProductDetail = AjaxAgent.call(url,"","",params);
    //return showProductDetail;
     document.getElementById('shopproductdetail').style.display='block';

    document.getElementById('shopproductdetail').innerHTML=showProductDetail;    
}

function showProductTip_Layer_response()
{
    if (BackgroundtableHttp.readyState == 4)
    {
        if (BackgroundtableHttp.responseText.indexOf('invalid') == -1)
        {
            try
            {
                var htmlRecord = BackgroundtableHttp.responseText;
                 document.getElementById('shopproductdetail').style.display='block';
                
                document.getElementById('shopproductdetail').innerHTML=htmlRecord;

                BackgroundtableBusy = false;
            } // end try 
            catch(e)
            {
                alert("Error: " + e) ;
            } // end try catch
        } // end if response index -1
    } // end if readystate 4
} // end tableresponse function
function tt_HideInit_close()
{
    document.getElementById('shopproductdetail').style.display='none';
}