<!-- Begin

function checkFields()	{

missinginfo="";

if (document.appform.pass.value=="")	{

missinginfo +="\n::-   Password";

}

if (document.appform.thname.value=="")	{

missinginfo +="\n::-   First Name";

}

if (document.appform.thsurname.value=="")	{

missinginfo +="\n::-   Surname";

}

if ((document.appform.themail.value=="")	||

(document.appform.themail.value.indexOf ('@')==-1)	||

(document.appform.themail.value.indexOf ('.')==-1))	{

missinginfo +="\n::-   Email Address";

}

if ((document.appform.thurl.value=="")	||

(document.appform.thurl.value.indexOf ('http://')==-1)	||

(document.appform.thurl.value.indexOf ('.')==-1))	{

missinginfo +="\n::-   Website Address";

}

if (document.appform.thaddress1.value=="")	{

missinginfo +="\n::-   Postal Address - line 1";

}

if (document.appform.thcity.value=="")	{

missinginfo +="\n::-   City";

}

if (document.appform.thzip.value=="")	{

missinginfo +="\n::-   Zip or Postal Code";

}

if (document.appform.thcountry.value=="")	{

missinginfo +="\n::-   Country";

}



if (missinginfo !="")	{

missinginfo="You failed to fill in the following REQUIRED information \n" + missinginfo + "\n\n Please enter this information and then click 'JOIN NOW'\n\n( If a particular item does not apply, just enter n/a in that box )\n\nForm Validation for TWSC Affiliate Lite\nby www.portal.2t2.com";

alert(missinginfo);

return  false;

}

else return true;

}

// End -->

