function launchWindow(url) {
	window.open(url,"Window","menubar=no,sizeable=1,scrollbars=1,width=800,height=600,toolbar=no");
}
function showBox(id) { 
	// $('.hint').hide(); 
	// $('#hint_'+id).show();
	$('#section_'+id).addClass('section_over');
	$('#section_glow_'+id).show();
	$('#caption_'+id).show();
	
}
function hideBox(id) { 
	// $('#hint_'+id).hide();
	$('#section_'+id).removeClass('section_over');
	$('#section_glow_'+id).hide();
	$('#caption_'+id).hide();
}
function showStepHint(id) { $('#step'+id+'_hint').show();}
function hideStepHint(id) { $('#step'+id+'_hint').hide();}
