

function tweet_and_show_license(status){
	day = new Date();
	id = day.getTime();
	URL = "http://twitter.com/home?status="+status;
	eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=600,height=500');");
	
	document.getElementById('step1').innerHTML = '<legend>STEP 1: TWEET</legend><p><img src="/images/check.png" class="check"/>Done! Remember to press <strong>&quot;Tweet&quot;</strong> so it gets posted.</p>';
	document.getElementById('step2').style.display = 'block';
	document.getElementById('step3').style.display = 'block';
	document.getElementById('step4').style.display = 'block';
	
	
}


function step2(){
	document.getElementById('step2').innerHTML = '<legend>STEP 2: Download</legend><p><img src="/images/check.png" class="check"/>Done!</p>';
	document.location.href = 'http://downloads.wonderwarp.com/simplechord.dmg';
	alert('The download has started. Check your Downloads folder when it\'s done and follow the instructions to activate the app.');
}

function i_have_js(){
	document.getElementById('javascript-warning').style.display='none';
	document.getElementById('step1').style.display='block';
}