
  function getColors(
p_ColonCleanserManufacturer,
p_ColonCleanserBrand,
p_ColonCleanserRange,
p_ColonCleanserType,
p_ColonCleanserTreatmentDuration,
p_ColonCleanserToxins,
p_ColonCleanserParasites,
p_ColonCleanserWeightLoss,
p_ColonCleanserAllNatural,
p_ColonCleanserIngredients

) {

 // Confirm that the object is usable:
 if (ajax) {

 // Call the PHP script.
 // Use the GET method.
 // Pass the username in the URL.
 ajax.open('get', 'http://www.colon-cleanser.com/includes/ColonCleanser/interactiveResultsColonCleanser.php?	p_ColonCleanserManufacturer=' + encodeURIComponent(p_ColonCleanserManufacturer) 
	+ '&p_ColonCleanserBrand=' + encodeURIComponent(p_ColonCleanserBrand)
	+ '&p_ColonCleanserRange=' + encodeURIComponent(p_ColonCleanserRange)
	+ '&p_ColonCleanserType=' + encodeURIComponent(p_ColonCleanserType)
	+ '&p_ColonCleanserTreatmentDuration=' + encodeURIComponent(p_ColonCleanserTreatmentDuration)
	+ '&p_ColonCleanserToxins=' + encodeURIComponent(p_ColonCleanserToxins)
	+ '&p_ColonCleanserParasites=' + encodeURIComponent(p_ColonCleanserParasites)
	+ '&p_ColonCleanserWeightLoss=' + encodeURIComponent(p_ColonCleanserWeightLoss)
	+ '&p_ColonCleanserAllNatural=' + encodeURIComponent(p_ColonCleanserAllNatural)
	+ '&p_ColonCleanserIngredients=' + encodeURIComponent(p_ColonCleanserIngredients)


		 );





// Function that handles the response:
 ajax.onreadystatechange = handle_check;

 // Send the request:
 ajax.send(null);

 } else { // Can't use Ajax!
 document.getElementById('targetDiv').innerHTML = 'The results will be returned upon submitting this form.';
 }

 }
 
 
 // Function that handles the response from the PHP script:
 function handle_check() {

 // If everything's OK:
 if ( (ajax.readyState == 4) && (ajax.status == 200) ) {

 // Assign the returned value to a document element:
 document.getElementById('targetDiv').innerHTML = ajax.responseText;

 }

 } // End of handle_check() function.