// JavaScript Document
function isQuantityValid(theForm)
{
  	var theQty = theForm.qty.value;

	if ((theForm.qty.selectedIndex > 0) && (theForm.delivery[1].checked == true))
	{
		alert(' If you have selected DOWNLOAD, please verify that the quantity is 1 ');
		theForm.qty.selectedIndex = 0;
		theForm.qty.focus();
		return false;
	}	
	
} 

function isQuantityValid_french(theForm)
{
  	var theQty = theForm.qty.value;

	if ((theForm.qty.selectedIndex > 0) && (theForm.delivery[1].checked == true))
	{
		alert(' Si vous avez choisi Télécharger, veuillez vérifier que la quantité est un  ');
		theForm.qty.selectedIndex = 0;
		theForm.qty.focus();
		return false;
	}	
	
} 