// JavaScript Document

/* function toggle_it(itemID){
	      // Toggle visibility between none and inline
	      if ((document.getElementById(itemID).style.display == 'none' && ((document.getElementById("select1").options[document.getElementById("select1").selectedIndex].text) == "Automobile Finance")))    document.getElementById(itemID).style.display = 'inline';
		  else if ((document.getElementById(itemID).style.display == 'inline')) document.getElementById(itemID).style.display = 'none';
		  
	  } */
	
	function clearallcheck()
	{
		document.getElementById('firstrad1').checked = false;
		document.getElementById('firstrad2').checked = false;
		document.getElementById('radio').checked = false;
		document.getElementById('radio2').checked = false;
		document.getElementById('radio3').checked = false;
	}
	
	function showsecondpart(firstvalue)
	{
		
	//	alert(firstvalue);
		if(firstvalue == "Automobile Finance" )
			{
			document.getElementById('firstrad1').checked = true;
			document.getElementById('secondpart').style.display = 'inline';
			}
		else if(firstvalue == "Motorcycle Finance")
			{
			document.getElementById('firstrad2').checked = true;
			//document.getElementById('secondpart').style.display = 'none';
			// window.location = 'redirect-to-partner.php?redirect=http://www.moneyforwheels.com';
			document.Application.redirect.value="http://www.moneyforwheels.com";
			document.Application.action="redirect-to-partner.php";
			document.Application.submit();
			}
	}	
	
	function showthirdpart(secondvalue)
	{
		if(secondvalue == "dealership" )
			document.getElementById('thirdpart').style.display = 'inline';
		else if(secondvalue == "privateparty")
		{
		//	 window.location = 'redirect-to-partner.php?redirect=http://www.moneytoride.com';
			document.Application.redirect.value="http://www.moneytoride.com";
			document.Application.action="redirect-to-partner.php";
			document.Application.submit();
		}
		else if(secondvalue == "refinance")
		{
			// window.location = 'redirect-to-partner.php?redirect=http://www.moneytoride.com';
			document.Application.redirect.value="http://www.moneytoride.com/refinance.php";
			document.Application.action="redirect-to-partner.php";
			document.Application.submit();
		}

	}	
	
	function showcreditissue(shorcreditissue)
	{
		if(shorcreditissue == "yes" )
			document.getElementById('credit_issue_span').style.display = 'inline';
		else
			document.getElementById('credit_issue_span').style.display = 'none';
	}
	