// JavaScript Document
	function navigate(frm)
	{
		var selIndex = getSelectedIndex(frm.rad);
		if( selIndex != -1 )
		{
						if( selIndex == 0 )
			{
				//If first option was chosen
				document.location.href = "help/memberid.php";
			}
			else if( selIndex == 1 )
			{
				//If second option was chosen
				document.location.href = "help/forgot.php";
			}			
			else if( selIndex == 2 )
			{
				//If second option was chosen
				document.location.href = "help/cancel.php";
			}
			else if( selIndex == 3 )
			{
				//If second option was chosen
				document.location.href = "http://www.newsdemon.com/nerover.php";
			}			
			else if( selIndex == 4 )
			{
				//If second option was chosen
				document.location.href = "help/overquota.php";
			}			
			else if( selIndex == 5 )			
			{
				//If second option was chosen
				document.location.href = "help/upgradefaq.php";
			}
			else if( selIndex == 6 )
			{
				//If second option was chosen
				document.location.href = "help/nod502.php";
			}
			else if( selIndex == 7 )
			{
				//If second option was chosen
				document.location.href = "http://www.newsdemon.com/ports.php";
			}
			else if( selIndex == 8 )
			{
				//If second option was chosen
				document.location.href = "help/posting.php";
			}
			else if( selIndex == 9 )
			{
				//If second option was chosen
				document.location.href = "http://www.newsdemon.com/connections.php";
			}
			else if( selIndex == 10 )
			{
				//If second option was chosen
				document.location.href = "http://www.newsdemon.com/westnewsdemon.php";
			}
			else if( selIndex == 11 )
			{
				//If second option was chosen
				document.location.href = "help/ppgroups.php";
			}
			else if( selIndex == 12 )
			{
				//If second option was chosen
				document.location.href = "http://www.newsdemon.com/support/index.php?department=6&subject=Create+A+Test+Account";
			}
			else if( selIndex == 13 )
			{
				//If second option was chosen
				document.location.href = "http://www.newsdemon.com/otherqs.php";
			}

			return true; //return true will allow form to get submitted.
		}
		else
		{
			alert("Please select an option.");
			return false;
		}
	}

	function getSelectedIndex(radgroup)
	{
		/* Returns back the id of selected radio button in a radio button group  */
		var j = -1;
	
		for( i=0; i < radgroup.length; i++ )
		{
			if( radgroup[i].checked )
			{
				j = i;
			}
		}
		return j;
	}