<!--
function add_cat()
{
if (document.com_form.categories.value =="none")
{alert("Please select a category")}
else
{
if (document.com_form.category.value.indexOf(document.com_form.categories.value) < 0)
{
if (document.com_form.category.value != ""){document.com_form.category.value = document.com_form.category.value + ', '};
document.com_form.category.value = document.com_form.category.value + document.com_form.categories.value}
}
}

function add_lang()
{
if (document.com_form.language.value =="none")
{alert("Please select a languge")}
else
{
if (document.com_form.contact_languages.value.indexOf(document.com_form.language.value) < 0)
{
if (document.com_form.contact_languages.value != ""){document.com_form.contact_languages.value = document.com_form.contact_languages.value + ', '};
document.com_form.contact_languages.value = document.com_form.contact_languages.value + document.com_form.language.value;}
}
}

function check_form()
{
if (document.com_form.company_name.value == "")
{
alert("Please fill in the [company name] field");
return false;
}
if (document.com_form.address.value == "")
{
alert("Please fill in the [address] field");
return false;
}
if (document.com_form.city.value == "")
{
alert("Please fill in the [city] field");
return false;
}
if (document.com_form.postal.value == "")
{
alert("Please fill in the [postal] field");
return false;
}
if (document.com_form.country.value == "none")
{
alert("Please fill in the [country] field");
return false;
}
if (document.com_form.business_type.value == "none")
{
alert("Please fill in the [business type] field");
return false;
}
if (document.com_form.category.value == "")
{
alert("Please fill in the [category] field");
return false;
}
if (document.com_form.products_and_services.value == "")
{
alert("Please fill in the [products_and_services] field");
return false;
}
if (document.com_form.contact_first_name.value == "")
{
alert("Please fill in the [contact_first_name] field");
return false;
}
if (document.com_form.contact_last_name.value == "")
{
alert("Please fill in the [contact_last_name] field");
return false;
}
if (document.com_form.contact_job_title.value == "")
{
alert("Please fill in the [contact_job_title] field");
return false;
}
if (document.com_form.contact_telephone.value == "")
{
alert("Please fill in the [contact_telephone] field");
return false;
}
if ((document.com_form.contact_email.value.indexOf("@") <= 0)||(document.com_form.contact_email.value.indexOf(".") <= 0))
{
alert("Please enter a valid email address");
return false;
}
if (document.com_form.contact_languages.value == "")
{
alert("Please fill in the [languages] field");
return false;
}
if ((document.com_form.password.value == "") || (document.com_form.password.value.length <6 ))
{
alert("Password should be 6 letters at least");
return false;
}
if (document.com_form.password.value != document.com_form.password2.value)
{
alert("Two passwords are not the same");
return false;
}
if (document.com_form.agree.checked == "")
{
alert("Please fill in the [agree] field");
return false;
}
document.com_form.submit()
}
//-->

