function swap(menu)
{
	var myindex  = menu.selectedIndex;
    var SelValue = menu.options[myindex].value;
	var numContent = 9;
	var el = "panel"+(myindex);
	
	for (var i=0; i <= numContent; i++)
	{
		var newEl = "panel"+(i);		
				
		if (newEl!=el)
		{
			document.getElementById(newEl).style.display = 'inline';
			document.getElementById(newEl).style.display = 'none';
		}
		else
		{
			document.getElementById(el).style.display = 'none';
			document.getElementById(el).style.display = 'block';
			
		}	
	}
	
	
}


function get_radio_value1()
{
	for (var i=0; i < document.askform1.answer.length; i++)
   	{
   		if (document.askform1.answer[i].checked)
      	{
      		var rad_val = document.askform1.answer[i].value;
      	}
   	}
	
	if (rad_val == "yes")
	{
		window.location.replace('http://www.econtechnologies.com/pages/support/solved.html');
	}
	else if (rad_val == "no")
		window.location.replace('http://www.econtechnologies.com/pages/support/support_form.php');
	else
		alert("You must select a radio button");
}

function get_radio_value2()
{
	for (var i=0; i < document.askform2.answer.length; i++)
   	{
   		if (document.askform2.answer[i].checked)
      	{
      		var rad_val = document.askform2.answer[i].value;
      	}
   	}
	
	if (rad_val == "yes")
	{
		window.location.replace('http://www.econtechnologies.com/pages/support/solved.html');
	}
	else if (rad_val == "no")
		window.location.replace('http://www.econtechnologies.com/pages/support/support_form.php');
	else
		alert("You must select a radio button");
}

function get_radio_value3()
{
	for (var i=0; i < document.askform3.answer.length; i++)
   	{
   		if (document.askform3.answer[i].checked)
      	{
      		var rad_val = document.askform3.answer[i].value;
      	}
   	}
	
	if (rad_val == "yes")
	{
		window.location.replace('http://www.econtechnologies.com/pages/support/solved.html');
	}
	else if (rad_val == "no")
		window.location.replace('http://www.econtechnologies.com/pages/support/support_form.php');
	else
		alert("You must select a radio button");
}

function get_radio_value4()
{
	for (var i=0; i < document.askform4.answer.length; i++)
   	{
   		if (document.askform4.answer[i].checked)
      	{
      		var rad_val = document.askform4.answer[i].value;
      	}
   	}
	
	if (rad_val == "yes")
	{
		window.location.replace('http://www.econtechnologies.com/pages/support/solved.html');
	}
	else if (rad_val == "no")
		window.location.replace('http://www.econtechnologies.com/pages/support/support_form.php');
	else
		alert("You must select a radio button");
}

function get_radio_value5()
{
	for (var i=0; i < document.askform5.answer.length; i++)
   	{
   		if (document.askform5.answer[i].checked)
      	{
      		var rad_val = document.askform5.answer[i].value;
      	}
   	}
	
	if (rad_val == "yes")
	{
		window.location.replace('http://www.econtechnologies.com/pages/support/solved.html');
	}
	else if (rad_val == "no")
		window.location.replace('http://www.econtechnologies.com/pages/support/support_form.php');
	else
		alert("You must select a radio button");
}

function get_radio_value6()
{
	for (var i=0; i < document.askform6.answer.length; i++)
   	{
   		if (document.askform6.answer[i].checked)
      	{
      		var rad_val = document.askform6.answer[i].value;
      	}
   	}
	
	if (rad_val == "yes")
	{
		window.location.replace('http://www.econtechnologies.com/pages/support/solved.html');
	}
	else if (rad_val == "no")
		window.location.replace('http://www.econtechnologies.com/pages/support/support_form.php');
	else
		alert("You must select a radio button");
}

