// Downloadable Product Wizard 	 	
function requestjsprice(urlrecent,redirecturl)
{
	new Ajax.Request(urlrecent,
	{
	    method:'get',
	    
		onSuccess: function(transport)
		{
	    	var response = transport.responseText || "no response text";
	    	window.location='http://www.transitionaldata.com/about/contact_price.php';
		},
		
		onFailure: function(){ alert('Sorry but there was an unexpected error while attempting to process your request.') }
	});
}

