function getColors(p_DataRecoveryServiceProvider,p_DataRecoveryServiceRetrievalMethod,p_DataRecoveryServiceDataLossType,p_DataRecoveryServiceOperatingSystemRecovered,p_DataRecoveryServiceApplicationType,p_DataRecoveryServiceDriveType,p_DataRecoveryServiceHardwareManufacturer,p_DataRecoveryServiceSeviceLevelsAvailable,p_DataRecoveryServiceSeviceDeviceType) {

 // 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/dataRecoveryService/interactiveResultsDataRecoveryService.php?p_DataRecoveryServiceProvider=' + encodeURIComponent(p_DataRecoveryServiceProvider) +
'&p_DataRecoveryServiceRetrievalMethod=' + encodeURIComponent(p_DataRecoveryServiceRetrievalMethod) +
'&p_DataRecoveryServiceDataLossType=' + encodeURIComponent(p_DataRecoveryServiceDataLossType) +
'&p_DataRecoveryServiceOperatingSystemRecovered=' + encodeURIComponent(p_DataRecoveryServiceOperatingSystemRecovered) +
'&p_DataRecoveryServiceApplicationType=' + encodeURIComponent(p_DataRecoveryServiceApplicationType) +
'&p_DataRecoveryServiceDriveType=' + encodeURIComponent(p_DataRecoveryServiceDriveType) +
'&p_DataRecoveryServiceHardwareManufacturer=' + encodeURIComponent(p_DataRecoveryServiceHardwareManufacturer) +
'&p_DataRecoveryServiceSeviceLevelsAvailable=' + encodeURIComponent(p_DataRecoveryServiceSeviceLevelsAvailable)  +
'&p_DataRecoveryServiceSeviceDeviceType=' + encodeURIComponent(p_DataRecoveryServiceSeviceDeviceType) 

	 );



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