// JavaScript Document
		function addtocart(form1){
			var qty1 = document.getElementById('qty').value;
			var qty2 = document.getElementById('qty1').value;
			
			//alert(qty1);
			
			if(isNaN(qty1)){
				
				alert("quantity can not be other than number");
				document.getElementById('qty').value = 0;
				return false;
				
			}
			
			if((qty1 == '' || qty1 == 0) && (qty2== '' || qty2 == 0)) {
				
				alert("quantity can not be empty, Please fill quantity");
				
				return false;
			}
			
			
			
			if(parseInt(qty1) > 10){
				
				alert("quantity can not be greater than 10, Please contact us for more");
				
				return false;
			}

			return true;
			
		}
