﻿/*
 * CVS Data
 * ----------------------------------------------------------------------------
 * $Source: E:/CVSREPO/Raytek/RaytekWeb/javascript/ProductDisplay.js,v $
 * $Author: DANAHERTM\pdeshpan $
 * $Revision: 1.2 $
 * $Date: 2007/06/18 09:44:04 $
 * $Log: ProductDisplay.js,v $
 * Revision 1.2  2007/06/18 09:44:04  DANAHERTM\pdeshpan
 * Added comments
 *
*/
///This method is used for redirecting the user to the product
///which is selected through product quick link.
function RedirectToPosting(item)
{ 
  if(item.Value != null)
    {
        if (item.Value != 0)
        {
            if (item.value != "")
            {
                window.location.href = item.Value;
            }
        }
    }
}

