﻿// JScript File

    
    

$(document).ready(function () 
{   
      $("div#ctl00_ContentPlaceHolder1_divItem  input[type='checkbox']").change(function()
     {
             var dmdid = "";
                $.each($("div#ctl00_ContentPlaceHolder1_divItem  input[type='checkbox']:checked"),function(i,chk)
                {
                    dmdid += ((i==0)?"":",")+$(chk).val();       
                    document.getElementById('hdndids').value=dmdid;  
                    
                });
     }); 
     
});

function compare()
{
    var ItemID = document.getElementById('hdndids').value;
 //   alert(ItemID);
 //   var featured = "1";
  //  var CategoryID = document.getElementById('ctl00_ContentPlaceHolder1_hdnCategoryID').value
    
    g.ComparePSPS(ItemID);
  
}

function Redirect(ItemID)
{
    var SitePath = document.getElementById('ctl00_ContentPlaceHolder1_hdnSitePath').value;   
    window.location=SitePath + "Templates/Template4.aspx?ItemID=" + ItemID ;
}

function ClickTemp(ItemID,CategoryID)
{   
    var featured = "1";
    Templates_Template5PSPS.SaveTrackInfo(ItemID,featured,CategoryID,returnfunction);                         
}
function returnfunction(res)
{  
    window.location = res.value;
}
