public void RetrieveProductsNotLinked()
 //**********RetrieveProductsNotLinked**********
 //NAME           : RetrieveProductsNotLinked
 //PURPOSE        : This function is used to retrieve products which are not linked to any assets.
 //PARAMETERS     :
 //RETURN VALUE   : void
 //USAGE		     :
 //CREATED ON	 : 16-04-2007
 //CHANGE HISTORY :Auth           Date	     Description
 //***********************************************************************
 {
     try
     {
         string         functionResult;
         XmlHttpHandler productAssets = new XmlHttpHandler();
         functionResult       = productAssets.GetProducts();
         Response.ContentType = "text/xml";
         Response.Charset     = "utf-16";
         Response.BinaryWrite(StringToBytes(functionResult));
         productAssets = null;
     }
     catch (Exception ex)
     {
         if (ExceptionPolicy.HandleException(DanaherTM.Framework.ExceptionHandling.ExceptionInstance.FlukeNetworks.WebPages, ex))
         {
             //throw;
         }
     }
 }