function getColors(p_OnlineBackupProvider,p_OnlineBackupOperatingSystemRecovered,p_OnlineBackupApplicationType,p_OnlineBackupRetrievalMethod,p_OnlineBackupSecurityFeatures,p_OnlineBackupBackupFeatures,p_OnlineBackupSharing,p_OnlineBackupVersioning,p_OnlineBackupRegulatoryCompliance,p_OnlineBackupFileType,p_OnlineBackupPrice,p_OnlineBackupLanguage,p_OnlineBackupNetwork) {

 // 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/onlineBackup/interactiveResultsOnlineBackup.php?p_OnlineBackupProvider=' + encodeURIComponent(p_OnlineBackupProvider) +
'&p_OnlineBackupOperatingSystemRecovered=' + encodeURIComponent(p_OnlineBackupOperatingSystemRecovered) +
'&p_OnlineBackupApplicationType=' + encodeURIComponent(p_OnlineBackupApplicationType) +
'&p_OnlineBackupRetrievalMethod=' + encodeURIComponent(p_OnlineBackupRetrievalMethod) +
'&p_OnlineBackupSecurityFeatures=' + encodeURIComponent(p_OnlineBackupSecurityFeatures) +
'&p_OnlineBackupBackupFeatures=' + encodeURIComponent(p_OnlineBackupBackupFeatures)  +
'&p_OnlineBackupSharing=' + encodeURIComponent(p_OnlineBackupSharing) +
'&p_OnlineBackupVersioning=' + encodeURIComponent(p_OnlineBackupVersioning) +
'&p_OnlineBackupRegulatoryCompliance=' + encodeURIComponent(p_OnlineBackupRegulatoryCompliance) +
'&p_OnlineBackupFileType=' + encodeURIComponent(p_OnlineBackupFileType)  +
'&p_OnlineBackupPrice=' + encodeURIComponent(p_OnlineBackupPrice) +
'&p_OnlineBackupLanguage=' + encodeURIComponent(p_OnlineBackupLanguage) +
'&p_OnlineBackupNetwork=' + encodeURIComponent(p_OnlineBackupNetwork) 

	 );



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