// JavaScript Document
//checks if the checkbox next to email addr is checked
//if it is, adds email address to a list and opens an email form
function addEmailAddress()  
{
	
}


function nextReunion() {
	var today = new Date();
	var todayInMS = today.getTime();
	var nextReunion = new Date(2013, 05, 08);
	var nextReunionInMS = nextReunion.getTime();
	var daysToNextReunion = (nextReunionInMS - todayInMS) /60/60/1000/24;
	document.forms[0].talalkozoig.value = Math.ceil(daysToNextReunion);
}
