Which classifications best describe your company? |
|
|
How many employees work at this location? |
|
|
What are the present panel shop capabilities of your company?
|
|
|
Which one of the following industries comprises the majority of your company business?
|
|
|
What other industries comprise the rest of your company business? |
|
|
What brand of control products do you prefer? |
|
|
What other brand of control products do you use? |
|
|
What brand of automation products do you prefer? |
|
|
What product categories are you most interested in? |
|
|
How does your company keep abreast of code and standard requirements? |
|
|
Which of the following membership benefits do you think are the most important to your company? |
|
|
");
theForm.Classification[0].focus();
return(false);
}
if (
theForm.Employees[0].checked == false
&&
theForm.Employees[1].checked == false
&&
theForm.Employees[2].checked == false
&&
theForm.Employees[3].checked == false
&&
theForm.Employees[4].checked == false
)
{
alert("Please tell us how large your company is.");
theForm.Employees[0].focus();
return(false);
}
if (
theForm.Capabilities[0].checked == false
&&
theForm.Capabilities[1].checked == false
&&
theForm.Capabilities[2].checked == false
&&
theForm.Capabilities[3].checked == false
&&
theForm.Capabilities[4].checked == false
&&
theForm.Capabilities[5].checked == false
&&
theForm.Capabilities[6].checked == false
&&
theForm.Capabilities[7].checked == false
&&
theForm.Capabilities[8].checked == false
&&
theForm.Capabilities[9].checked == false
&&
theForm.Capabilities[10].checked == false
&&
theForm.Capabilities[11].checked == false
)
{
alert("Please choose at least 1 capability.");
theForm.Capabilities[0].focus();
return(false);
}
if (
theForm.Indserve1[0].checked == false
&&
theForm.Indserve1[1].checked == false
&&
theForm.Indserve1[2].checked == false
&&
theForm.Indserve1[3].checked == false
&&
theForm.Indserve1[4].checked == false
&&
theForm.Indserve1[5].checked == false
&&
theForm.Indserve1[6].checked == false
&&
theForm.Indserve1[7].checked == false
&&
theForm.Indserve1[8].checked == false
&&
theForm.Indserve1[9].checked == false
&&
theForm.Indserve1[10].checked == false
&&
theForm.Indserve1[11].checked == false
&&
theForm.Indserve1[12].checked == false
&&
theForm.Indserve1[13].checked == false
&&
theForm.Indserve1[14].checked == false
&&
theForm.Indserve1[15].checked == false
&&
theForm.Indserve1[16].checked == false
&&
theForm.Indserve1[17].checked == false
&&
theForm.Indserve1[18].checked == false
&&
theForm.Indserve1[19].checked == false
&&
theForm.Indserve1[20].checked == false
&&
theForm.Indserve1[21].checked == false
&&
theForm.Indserve1[22].checked == false
&&
theForm.Indserve1[23].checked == false
)
{
alert("Please choose a primary industry.");
theForm.Indserve1[0].focus();
return(false);
}
if (
theForm.BrandList1[0].checked == false
&&
theForm.BrandList1[1].checked == false
&&
theForm.BrandList1[2].checked == false
&&
theForm.BrandList1[3].checked == false
&&
theForm.BrandList1[4].checked == false
&&
theForm.BrandList1[5].checked == false
&&
theForm.BrandList1[6].checked == false
)
{
alert("Please choose a preferred brand.");
theForm.BrandList1[0].focus();
return(false);
}
if (
theForm.AutoList[0].checked == false
&&
theForm.AutoList[1].checked == false
&&
theForm.AutoList[2].checked == false
&&
theForm.AutoList[3].checked == false
&&
theForm.AutoList[4].checked == false
&&
theForm.AutoList[5].checked == false
&&
theForm.AutoList[6].checked == false
&&
theForm.AutoList[7].checked == false
&&
theForm.AutoList[8].checked == false
&&
theForm.AutoList[9].checked == false
)
{
alert("Please choose a preferred automation brand.");
theForm.AutoList[0].focus();
return(false);
}
if (
theForm.ProductList[0].checked == false
&&
theForm.ProductList[1].checked == false
&&
theForm.ProductList[2].checked == false
&&
theForm.ProductList[3].checked == false
&&
theForm.ProductList[4].checked == false
&&
theForm.ProductList[5].checked == false
&&
theForm.ProductList[6].checked == false
&&
theForm.ProductList[7].checked == false
&&
theForm.ProductList[8].checked == false
&&
theForm.ProductList[9].checked == false
&&
theForm.ProductList[10].checked == false
&&
theForm.ProductList[11].checked == false
&&
theForm.ProductList[12].checked == false
)
{
alert("Please choose at least one preferred product category.");
theForm.ProductList[0].focus();
return(false);
}
if (
theForm.CodeAndStandards[0].checked == false
&&
theForm.CodeAndStandards[1].checked == false
&&
theForm.CodeAndStandards[2].checked == false
&&
theForm.CodeAndStandards[3].checked == false
&&
theForm.CodeAndStandards[4].checked == false
)
{
alert("Please choose how your company meet its Codes and Standards requirements.");
theForm.CodeAndStandards[0].focus();
return(false);
}
if (
theForm.BenefitsList[0].checked == false
&&
theForm.BenefitsList[1].checked == false
&&
theForm.BenefitsList[2].checked == false
&&
theForm.BenefitsList[3].checked == false
&&
theForm.BenefitsList[4].checked == false
&&
theForm.BenefitsList[5].checked == false
&&
theForm.BenefitsList[6].checked == false
)
{
alert("Please choose at least one benefit important to your company.");
theForm.BenefitsList[0].focus();
return(false);
}
var dt = new Date();
dt.setYear( dt.getFullYear()+1 );
var MyCookie = "MyInfo=";
MyCookie = MyCookie + document.thisForm.eMail.value + "/";
MyCookie = MyCookie + document.thisForm.password.value + "/";
document.cookie = MyCookie + "; expires = " + dt + ";";
return (true);
}
//-->