	//****************************************************************
	//		The Customer Connection, Inc. 
	//		Value On Line form validation
	//		
	//		Author:
	//		Revision History:	
	//			
	//****************************************************************


		
		
		function validateVOW()
			{
			var f = document.frmVOW;			
			
			//alert ("clientCode.value = " + f.clientCode.value);			
			
			if(f.card_number.value == "")
				{
				alert("Please enter your card number before continuing.");
				f.card_number.focus();
				return false;
				}
				
			f.clientCode.value = clientID;	
			f.postUrl.value  = postUrl;			
			
			}