function validate_basket()
{  if ((document.getElementById('cantity').value=="") ||(document.getElementById('cantity').value==0))
		 { alert("Cantitatea trebuie sa fie mai mare sau egala cu 1");
		    document.getElementById('cantity').focus();
		    return false;
		 }
		 document.getElementById('basket').submit();
}
function del_basket(index, name)
{
	if (confirm("Vreti sa stergeti produsul '"+name+"' din cos?"))
	 window.location="index.php?modul=buy&op=del&index="+index;
}

