function CheckFormPOOL( theform )
 

{
alert("Hello World!");	


	var bMissingFields = false;
	var strFields = "";
	
	if( theform.NAME.value == 'La Bassine and waterbirth kit ROUND TAP' ){
				bMissingFields = true;
				strFields += " Please Enter The Baby's Due Date - You Can Select The Date Via The Calendar \n";
			}
		
		if( bMissingFields ) {
			alert( "" + strFields );
			return false;
		}
		
//Lets Create a DueDate Cookie for Retrieval at the CheckOut Stage

		var DueDatevalue = document.forms['TENS1'].DueDate.value;
//alert (DueDatevalue);
			
		createCookie('DueDate',DueDatevalue,'365');
		AddToCart(TENS1);
		

alert("unfortunately there is something in the field");
return true;
}


