var arrAlert = {"txtFullName" : "Enter Name",
			"txtEmailAdd" : "Enter Valid Email",
			"txtContactNum" : "Enter Contact Number",
			"totalchk" : "Choose atleast one Products/Service required",
			"taDesc" : "Enter Other Requirement"}
			
var arrCustFunc1 = {"txtEmailAdd" : "IsEmail",
				"totalchk": "fnIsAnyChecked"};


function chkValidation()
{
	return fnCheckForm(document.frmQuote1,arrAlert,arrCustFunc1,{},{},'lightblue');
}

function fnIsAnyChecked()
{
var chkBox = document.frmQuote1['chkServiceProd[]'];
if(chkBox.length)
{
	var cnt = chkBox.length;
	var i=0;
	for(i=0; i<cnt;i++)
	{
		if(chkBox[i].checked)
		{
			return true
		}
	}
}
else if(chkBox.checked)
{
	return true;
}
return false;
	
}