/*
	file:	        air.js
	description:	handles download now click event for air otherversions pape.
	$Header: /source/docroot/js/downloadcenter/air.js,v 1.2 2009/05/20 22:11:54 rusliu Exp $

*/
registerOnReady(function() {
	// Listen for the install now button
	document.observe('Air:ButtonClick', function(event) {
		var form = $('installSelector');
		var platform = $(form['installer']).getValue();
		var thankyoupage = $('AirDownloadNow').readAttribute('href');
		thankyoupage = thankyoupage + '?installer=' + platform
		// Update the href and direct the browser to the thankyoupage page
		$('AirDownloadNow').setAttribute('href',thankyoupage);
		document.url = thankyoupage;
	});
	}
);
