function validatEml() {
var invalid = " "; // Invalid character is a space
var nam = document.comment.realname.value;
var em1 = document.comment.email.value;
var em2 = document.comment.email2.value;
var cty = document.comment.country.value;
var hdl = document.comment.message.value;
var com = document.comment.comments.value;
var ack = document.comment.acknowledge.value;
// check for a value in name field.
if (nam == '') {
alert('Please tell us your name.  Full Name? First Name? or Nick Name?  It`s your choice!');
return false;
}
// check for a value in both e-mail fields.
if (em1 == '' || em2 == '') {
alert('Please confirm your e-mail address by entering it twice.');
return false;
}
// check for a value in country field.
if (cty == '') {
alert('Please tell us where in the world you are from.  You don`t have to be specific.  Country will do fine.');
return false;
}
// check for a value in headline field.
if (hdl == '') {
alert('Please summarize your comments into a headline.  Something to grab a reader`s attention.');
return false;
}
// check for a value in comments field.
if (com == '') {
alert('Please fill in your comment or review of this episode.');
return false;
}
// check for a value in acknowledge field.
if (ack == '') {
alert('Please acknowledge that your comments will become the property of Deepspace93.com.');
return false;
}
// check for spaces
if (document.comment.email.value.indexOf(invalid) > -1) {
alert("Sorry, spaces are not allowed.");
return false;
}
else {
if (em1 != em2) {
alert ("You did not enter the same e-mail address twice. Please verify your e-mail address.");
return false;
}
   }
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.comment.email.value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
return (false)
}

function validEml() {
var invalid = " "; // Invalid character is a space
var nam = document.vote.realname.value;
var em1 = document.vote.email.value;
// check for a value in name field.
if (nam == '') {
alert('Please tell us your name.');
return false;
}
if (nam == 'Your Name') {
alert('Please tell us your name.');
return false;
}
// check for a value in e-mail field.
if (em1 == '') {
alert('Please enter your e-mail address.');
return false;
}
// check for spaces
if (document.vote.email.value.indexOf(invalid) > -1) {
alert("Please enter your e-mail address.  Sorry, spaces are not allowed.");
return false;
}
if (/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(document.vote.email.value)){
return (true)
}
alert("Invalid E-mail Address! Please re-enter.")
return (false)
}

document.write("<style type=text/css> A { text-decoration : none; } </style>")

