
  function getColors(p_CelluliteBrand,p_CelluliteRange,p_CelluliteType,p_CelluliteBenefits,p_CelluliteVisibleResultsIn,p_CelluliteApplicationArea,p_CelluliteDayNight,p_CelluliteNonGreasy,p_CelluliteRemovingIngredients,p_CelluliteSkinFirmers) {

 // 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.buyersguide.com/includes/Cellulite/interactiveResultsCellulite.php?	p_CelluliteBrand=' + encodeURIComponent(p_CelluliteBrand) 
	+ '&p_CelluliteRange=' + encodeURIComponent(p_CelluliteRange)
	+ '&p_CelluliteType=' + encodeURIComponent(p_CelluliteType)
	+ '&p_CelluliteBenefits=' + encodeURIComponent(p_CelluliteBenefits)
	+ '&p_CelluliteVisibleResultsIn=' + encodeURIComponent(p_CelluliteVisibleResultsIn)
	+ '&p_CelluliteApplicationArea=' + encodeURIComponent(p_CelluliteApplicationArea)
	+ '&p_CelluliteDayNight=' + encodeURIComponent(p_CelluliteDayNight)
	+ '&p_CelluliteNonGreasy=' + encodeURIComponent(p_CelluliteNonGreasy)
	+ '&p_CelluliteRemovingIngredients=' + encodeURIComponent(p_CelluliteRemovingIngredients)
	+ '&p_CelluliteSkinFirmers=' + encodeURIComponent(p_CelluliteSkinFirmers)



		 );





// 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.