function check_attendance(){
	var oscar_party = document.getElementById('oscar_party');
	var other_categories = document.getElementById('other_categories');
	if(oscar_party.checked){
		other_categories.style.display = 'block';
	} else {
		other_categories.style.display = 'none';
	}
}

function email_link(txt){
	var zack_ = 'zack_';
	var ghee = 'ghee';
	document.write('<a href="mailto:'+zack_+'mc'+ghee+'@'+'yahoo'+'.'+'com">'+txt+'</a>');
}