﻿function addProductAndQTY(productID)
{
    var e = document.getElementById("ddlProductQTY" + productID);
    var qty = e.options[e.selectedIndex].value;
    location.href = 'content.aspx?cid=6&product=' + productID + '&qty=' + qty + '&redirect2cart=0';
}
