// JavaScript Document
function deliveryValidation()
{
	var cname=document.getElementById("TcustName");
	var str="";
	if(cname.value=="")
	{
	str += "\n * Customer name can not be Blank."
	
	}
	if(document.getElementById("TcontName").value=="")
	{
		str+="\n * Contact name can not be Blank."
	}
	if(document.getElementById("Tdate").value=="")
	{
		str+= "\n * Enter proper date value."
	}
	if(document.getElementById("TCT1").value=="")
	{
		str+="\n * Atleast add one container type."
	}
	if(document.getElementById("TC1").value=="")
	{
		str+= "\n * Atlese add one # of containers."
	}
	if(document.getElementById("TW1").value=="")
	{
		str+= "\n * Add weight"
	}
	if(str!="")
	{
		str= "Please Correct following Errors.\n" +str;
		alert(str);
		return false;
	}
	
	
}
