
  function getColors(p_manufacturerEye,p_brandEye,p_typeEye,p_price_rangeEye,p_WrinkleRemoversEye,p_AntiOxidantsEye,p_VeganEye,p_SoothingEye,p_AnimalTestingEye,p_ConcernEye,p_WrinkleMoisturizersEye) {

 // 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.eyecream.me/includes/eyeCream/interactiveResultsEyeCream.php?p_manufacturerEye=' + encodeURIComponent(p_manufacturerEye) 
		+ '&p_brandEye=' + encodeURIComponent(p_brandEye)
		+ '&p_typeEye=' + encodeURIComponent(p_typeEye)	
		+ '&p_price_rangeEye=' + encodeURIComponent(p_price_rangeEye) 
		+ '&p_WrinkleRemoversEye=' + encodeURIComponent(p_WrinkleRemoversEye) 
		+ '&p_AntiOxidantsEye=' + encodeURIComponent(p_AntiOxidantsEye)
		+ '&p_VeganEye=' + encodeURIComponent(p_VeganEye)	
		+ '&p_SoothingEye=' + encodeURIComponent(p_SoothingEye)
		+ '&p_AnimalTestingEye=' + encodeURIComponent(p_AnimalTestingEye)
		+ '&p_ConcernEye=' + encodeURIComponent(p_ConcernEye)
		+ '&p_WrinkleMoisturizersEye=' + encodeURIComponent(p_WrinkleMoisturizersEye)

		 );





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