				function CheckNews()
				{
										alert("check form");
					theFrm = document.frmNews;
			
					hasDot = theFrm.Email.value.indexOf(".");
					hasAt = theFrm.Email.value.indexOf("@");
					
					if (hasDot == -1 || hasAt == -1)
					{
						alert("Hibás e-mail cím.");
						theFrm.Email.focus();
						theFrm.Email.select();
						return false;
					}
			
					
					return true;
				}

				function CheckSS()
				{
                                        alert("check form");
 					theFrm = document.frmSS;
			
					hasDot = theFrm.Email.value.indexOf(".");
					hasAt = theFrm.Email.value.indexOf("@");
					
					if (hasDot == -1 || hasAt == -1)
					{
						alert("Hibás e-mail cím.");
						theFrm.Email.focus();
						theFrm.Email.select();
						return false;
					}
			
					
					return true;
				}