// JavaScript Document
function convalidate()
			{
				if(this.document.form.consignment.value=="" || this.document.form.consignment.value.length!=10)
					{
						alert("Consignment Field should not be blank and must be 10 Digits in length");
						this.document.form.consignment.focus();
						return false;
					}
			}
