function getColors(p_DataRecoverySoftwareProvider,p_DataRecoverySoftwareFileType,p_DataRecoverySoftwareDataLossType,p_DataRecoverySoftwareSeviceDeviceType,p_DataRecoverySoftwareOperatingSystemRunning,p_DataRecoverySoftwareOperatingSystemRecovered,p_DataRecoverySoftwareApplicationType,p_DataRecoverySoftwarePrice) {

 // 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.recovery.net/includes/dataRecoverySoftware/interactiveResultsDataRecoverySoftware.php?p_DataRecoverySoftwareProvider=' + encodeURIComponent(p_DataRecoverySoftwareProvider) +
'&p_DataRecoverySoftwareFileType=' + encodeURIComponent(p_DataRecoverySoftwareFileType) +
'&p_DataRecoverySoftwareDataLossType=' + encodeURIComponent(p_DataRecoverySoftwareDataLossType) +
'&p_DataRecoverySoftwareSeviceDeviceType=' + encodeURIComponent(p_DataRecoverySoftwareSeviceDeviceType) +
'&p_DataRecoverySoftwareOperatingSystemRunning=' + encodeURIComponent(p_DataRecoverySoftwareOperatingSystemRunning) +
'&p_DataRecoverySoftwareOperatingSystemRecovered=' + encodeURIComponent(p_DataRecoverySoftwareOperatingSystemRecovered) +
'&p_DataRecoverySoftwareApplicationType=' + encodeURIComponent(p_DataRecoverySoftwareApplicationType) +
'&p_DataRecoverySoftwarePrice=' + encodeURIComponent(p_DataRecoverySoftwarePrice) 

	 );



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