// JavaScript Document
function val_form(id){
	form=document.forms['item_'+id];
	if(!form.quantity.value.length==0){
		return true;	
	}else{
		alert('You need to enter a Quantity!');
		return false;
	}
	
}
