﻿// JScript File

function LoadExtImgCategory(imgCtrl, id, flag, zoomId){
imgCtrl.onload = null;
imgCtrl.src = wsUrl + 'images/products/'+id+'-'+flag+'-100-100.jpg';
var imgSrc = imgCtrl.src.toLowerCase();
//document.getElementById(zoomId).style.display = "block";
}
  
  
   
 function GetjqueryHeaderCat()
 
{  var Website= $("#ctl00_ucSCHeader_hdnUrl").val() ;   
     urlValue=   " "+Website +"/GetHeaderCat.ashx";
   
  //  urlValue=   "GetHeaderCat.ashx";
    
 
    $(document).ready(function()
  { 
  $.ajaxSetup ({cache: false});
  $.ajax({
    method: "POST",
    url: urlValue,

   // contentType: "application/json; charset=utf-8",
   // dataType: "json",
   beforeSend : function(){
  
  },
   success: function(response)
          {   
                 $("div#GetHeaderCat").html(response);
         }
});

});

}
 
  
  


