function checkCaptcha() {
	if ( document.getElementById('CAPTCHA1') ) {
		if ( document.getElementById('CAPTCHA1').value.toLowerCase() != 'orange' ) {
			alert('Sorry, you did not answer the color/fruit question correctly.');
			return false;
		}
		document.getElementById('contact_form1').action='http://www.motorcityinteractive.com/Scripts/webform.php';
	} else {
		if ( document.getElementById('CAPTCHA').value.toLowerCase() != 'orange' ) {
			alert('Sorry, you did not answer the color/fruit question correctly.');
			return false;
		}
		document.getElementById('contact_form').action='http://www.motorcityinteractive.com/Scripts/webform.php';
	}
}


function checkCaptcha2() {
	if ( document.getElementById('CAPTCHA1') ) {
		if ( document.getElementById('CAPTCHA1').value.toLowerCase() != 'orange' ) {
			alert('Sorry, you did not answer the color/fruit question correctly.');
			return false;
		}
		document.getElementById('contact_form1').action='/forms/submit.cfm';
	} else {
		if ( document.getElementById('CAPTCHA').value.toLowerCase() != 'orange' ) {
			alert('Sorry, you did not answer the color/fruit question correctly.');
			return false;
		}
		document.getElementById('contact_form').action='/forms/submit.cfm';
	}
}

