// JavaScript Document

function validate()
	{
if (document.profile.firstname.value!="") 
	{
if (document.profile.firstname.value.length>48) 
		{
		alert('Your NAME is too long.');
		return false;
		}
	}
if (document.profile.firstname.value == ""){
       	alert('Please enter your FULL NAME before continuing.');
       	return false;
        }
if (document.profile.company.value!="") 
	{
if (document.profile.company.value.length>48) 
		{
		alert('Your COMPANY NAME is too long.');
		return false;
		}
	}
if (document.profile.company.value == ""){
       	alert('Please enter your COMPANY NAME before continuing.');
       	return false;
        }
if (document.profile.url.value == ""){
       	alert('You must enter an WEBSITE ADDRESS before continuing.');
       	return false;
        }
if (document.profile.url.value.indexOf("http://") ==-1 || document.profile.url.value.indexOf(".") ==-1 || document.profile.url.value.indexOf(" ") !=-1 || document.profile.url.value.length <6) 
		{
		alert('Please make sure your WEBSITE ADDRESS is valid before continuing.');
		return false;                 
		}
if (document.profile.email.value == ""){
       	alert('You must enter an E-MAIL ADDRESS before continuing.');
       	return false;
        }
if (document.profile.email.value.indexOf("@") ==-1 || document.profile.email.value.indexOf(".") ==-1 || document.profile.email.value.indexOf(" ") !=-1 || document.profile.email.value.length <6) 
		{
		alert('Please make sure your E-MAIL ADDRESS is valid before continuing.');
		return false;                 
		}
if (document.profile.phone.value!="") 
	{
if (document.profile.phone.value.length<10) 
		{
		alert('The TELEPHONE # you entered appears to be too short.');
		return false;
		}
	}
if (document.profile.phone.value == ""){
       	alert('Please enter your TELEPHONE # before continuing.');
       	return false;
        } 
if (document.profile.found.options[0].selected)
                {
        alert('Please indicate HOW YOU FOUND US.');
        return false;
        }
return true;
}