function showBasket(pro)
{
    basketWin = window.open ('', 'basketWin', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,height=850,width=750');
      basketWin.focus();
      


    if(pro>0)
    {
basketWin.location.href = 'cart/review.php?mode=add&quantity=1&product='+pro;
    }
    else
    {
basketWin.location.href = 'cart/review.php';
    }
}
