<!-- 
//Browser Support Code
function show_all_details(product_id, show_or_hide){
	var ajaxRequestsort;  // The variable that makes Ajax possible!
	
	try{
		// Opera 8.0+, Firefox, Safari
		ajaxRequestsort = new XMLHttpRequest();
	} catch (e){
		// Internet Explorer Browsers
		try{
			ajaxRequestsort = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try{
				ajaxRequestsort = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				// Something went wrong
				alert("Your browser does not support this feature. Please upgrade it.");
				return false;
			}
		}
	}
	// Create a function that will receive data sent from the server
	ajaxRequestsort.onreadystatechange = function(){
		if(ajaxRequestsort.readyState == 4){
			var ajaxDisplay = document.getElementById('full_details');
			ajaxDisplay.innerHTML = ajaxRequestsort.responseText;
		} else {
			var ajaxDisplay = document.getElementById('full_details');
			ajaxDisplay.innerHTML = '<p style="text-align: center">Loading...please wait...<br /><img src="/images/ajaxloading.gif" /></p>';
		}
	}

	var queryString = "?product_id=" + product_id + "&show_or_hide=" + show_or_hide;
	ajaxRequestsort.open("GET", "../../inc_scripts/show_all_details.php" + queryString, true);
	ajaxRequestsort.send(null); 
}

//-->