function Ajax_InstallationGuide (product, platform, platformName) 
{

	$.ajax
	({
		type: 'POST',
		url: "/ajax/InstallationGuide.php",	
		data: "product="+product+"&platform="+platform+"&platformName="+platformName,
		dataType: 'text/html',

		success: function (reponse) 
		{
			if (reponse == "")
			{
				document.location.href = "";
			}
			else
			{
  				$('td.guide ul.instructions').html(reponse);
  			}
		},

		error: function () {
			// alert('error');
		}

	});// End Ajax

}// End Function
