function downloadRedirect() {
	var strOS = navigator.appVersion;
	if (strOS.toLowerCase().indexOf('win') != -1) {
		downloadWindowsRedirect();
	} else if (strOS.toLowerCase().indexOf('mac') != -1) {
		downloadMacOSXRedirect();
	}
}

function downloadMacOSXRedirect() {
	pageTracker._trackPageview('/downloads/flvmate-1.3.0.dmg');
	var destination = "/thankyou";
    setTimeout("window.location='" + destination + "'", 3000);
    return true;
}

function downloadWindowsRedirect() {
	pageTracker._trackPageview('/downloads/flvmate-1.3.0-install.exe');
	var destination = "/thankyou";
    setTimeout("window.location='" + destination + "'", 3000);
    return true;
}
