<!--
			function toggleDiv(id)
			{
				var dv = document.all[id];
				if (dv.style.display == '')
					dv.style.display = 'none';
				else
					dv.style.display = '';			
			}

			function checkEmailAddr(theAddr)
			{
				if (theAddr.indexOf('@') == -1) {
					theAddr = theAddr + document.all.defaultEmailDomain.value;
				}
				if (theAddr.indexOf('.') == -1) {
					alert ('The email address you typed may not be valid. Please check it.');
				}
				return(theAddr);
			}
		//-->

