function checkform(frm) {
	if(frm.pickup1.value.length!=4 || frm.pickup2.value.length!=4 || frm.pickup3.value.length!=4 || frm.pickup4.value.length!=4 || frm.pickup5.value.length!=4) {
		//alert(frm.pickup.value);
		var strVal = frm.pickup.value;
		strVal = strVal.replace(" ","")
		strVal = strVal.replace(" ","")
		strVal = strVal.replace(" ","")
		strVal = strVal.replace(" ","")
		//alert(strVal);
		if(strVal.length==20) {
			return true;
		} else {
			alert("Please enter your Pickup Code");
			return false;
		}
		alert("Please enter your Pickup Code");
		return false;
	} else {
		return true;
	}
}
