function VerifyEntry(f){
	// find first check
	for (var i=0; i<f.length; i++)
	{
		if (f.elements[i].type == 'checkbox')
		{
			if (f.elements[i].checked)
			{
				// loop find and check for VALMD to redirect to ULA
				for (var i=1; i<=f.cnt.value; i++)
				{
					if (eval('f.N' + i + '.value') == 'VALMD')
					{
						if ( (eval('f.BoxA' + i + '.checked')))
						{
							f.action='SubscribeULA.asp';
						}
					}
				}
				return true;
			}
		}
	}
	alert('Please select a subscription.');
	return false;
}
