<!--
function redirectpage() {
if (document.select_plan_form.select_state.value == "0"){
alert("Select State");
return false;
}
else {
var selstate = document.select_plan_form.select_state.value;
if (document.select_plan_form.select_plan.value == "individual") {
if (selstate == "CA") document.select_plan_form.action = "individual_quote.htm";
else if (selstate == "CO") document.select_plan_form.action = "individual_quote.htm";
else if (selstate == "NV") document.select_plan_form.action = "individual_quote.htm";
else document.select_plan_form.action = "dir-individual-medical-insurance.html?prodid=200&st="+selstate+"";																													
}
if (document.select_plan_form.select_plan.value == "group") {
if (selstate == "CA") document.select_plan_form.action = "group.htm";
else document.select_plan_form.action = "dir-group-medical-insurance.html?prodid=220&st="+selstate+"";
}
if (document.select_plan_form.select_plan.value == "short") {
if (selstate == "CA") document.select_plan_form.action = "individual_quote.htm";
else if (selstate == "CO") document.select_plan_form.action = "individual_quote.htm";
else if (selstate == "NV") document.select_plan_form.action = "individual_quote.htm";
else document.select_plan_form.action = "dir-short-term-health-insurance.html?prodid=210&st="+selstate+"";
}
if (document.select_plan_form.select_plan.value == "dental") {
if (selstate == "CA") document.select_plan_form.action = "dental_quote.htm";
else document.select_plan_form.action = "dir-individual-medical-insurance.html?prodid=230&st="+selstate+"";
}
if (document.select_plan_form.select_plan.value == "life") {
if (selstate == "CA") document.select_plan_form.action = "termlife.htm";
else document.select_plan_form.action = "life_insurance_results.htm?statecode="+selstate+"";
}
if (document.select_plan_form.select_plan.value == "auto") {
if (selstate == "CA") document.select_plan_form.action = "auto_home_form.htm";
else document.select_plan_form.action = "auto_insurance_results.htm?statecode="+selstate+"";
}
if (document.select_plan_form.select_plan.value == "home") {
if (selstate == "CA") document.select_plan_form.action = "auto_home_form.htm";
else document.select_plan_form.action = "home_insurance_results.htm?statecode="+selstate+"";
}
document.select_plan_form.submit();
}
}
-->