function validatereseller(thisform)
{if (thisform.firstName.value=="")
{alert('please enter your name to continue');
thisform.firstName.focus();
return false;}
if (thisform.lastName.value=="")
{alert('please enter your last name to continue');
thisform.lastName.focus();
return false;}
if (thisform.eMail.value=="")
{alert('please enter your eMail to continue');
thisform.eMail.focus();
return false;}
if (thisform.tel.value=="")
{alert('please enter your telephone code to continue');
thisform.tel.focus();
return false;}
if (thisform.tel.value.length<10)
{alert('Please enter 10 digit telephone include your area code, no spaces or dishes');
thisform.tel.focus();
return false;}
if (!thisform.bestway[0].checked && !thisform.bestway[1].checked)
{alert('please select the best way to contact you');
thisform.bestway[0].focus();
return false;}}