function productLink(val)
{
    if (val != 0) {
        location.href = val;
        return true;
    } else {
        return false;
    }
}