function ClickLInkButton(strRowIndex)
	         {
	           //alert(strRowIndex);
	           var elem_link = document.getElementById("ctl00_ContentPlaceHolder1_grdViewCart_ctl0" + strRowIndex + "_lnkInsurance");
	           if (elem_link)
	              {
	                //alert('Called');
	                elem_link.innerHTML = "Remove Insurance";
	                //alert('Called_1');
	                
	                //Assign clicked row index to the hf
	                var elem_hf = document.getElementById("ctl00_ContentPlaceHolder1_hfRowIndex");
	                if (elem_hf)
	                   {
	                     elem_hf.value = strRowIndex - 2;
	                   }
	              }
	           //return false;
	         }
