
  function getColors(
p_GameStationManufacturer,
p_GameStationRange,
p_GameStationMemory,
p_GameStationRAM,
p_GameStationPlayback,
p_GameStationIO,
p_GameStationMaximumControllers,
p_GameStationWiFi,
p_GameStationMediaFormats,
p_GameStationParentalControls





) {

 // 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', '/includes/GameStation/interactiveResultsGameStation.php?p_GameStationManufacturer=' + encodeURIComponent(p_GameStationManufacturer) 
	+ '&p_GameStationRange=' + encodeURIComponent(p_GameStationRange)
	+ '&p_GameStationMemory=' + encodeURIComponent(p_GameStationMemory)
	+ '&p_GameStationRAM=' + encodeURIComponent(p_GameStationRAM)
	+ '&p_GameStationPlayback=' + encodeURIComponent(p_GameStationPlayback)
	+ '&p_GameStationIO=' + encodeURIComponent(p_GameStationIO)
	+ '&p_GameStationMaximumControllers=' + encodeURIComponent(p_GameStationMaximumControllers)
	+ '&p_GameStationWiFi=' + encodeURIComponent(p_GameStationWiFi)
	+ '&p_GameStationMediaFormats=' + encodeURIComponent(p_GameStationMediaFormats)
	+ '&p_GameStationParentalControls=' + encodeURIComponent(p_GameStationParentalControls)

		
	



		 );





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