function IsEmail(email) { var filter=/^\w+((-\w+)|(\.\w+))*\@[A-Za-z0-9]+((\.|-)[A-Za-z0-9]+)*\.[A-Za-z0-9]+$/; return filter.test(email); } function checkForm() { var your_email = document.getElementById('your_email'); if (your_email.value == '') { alert('Please input your email address'); your_email.focus(); return false; } if (!IsEmail(your_email.value)) { alert('Please input the correct email address'); your_email.focus(); return false; } //document.form_reg.submit(); showReg('indexRight',your_email.value); } document.writeln('

Free Registration Now!

Join us to create watchlist and track your software
');