



function displayMessage(){

     var emailTemplate = document.getElementById('emailtemplate'); 

    if (emailTemplate != null){

    var messageBox = document.getElementById('textmessage'); 


    var templateName = emailTemplate.options[emailTemplate.selectedIndex].text;

    messageBox.value=''; 

     
           

           
          if (templateName == 'miss you'){
              

            messageBox.value="I miss the time we had coffee together."; 

         }


     
           

           
          if (templateName == 'Take a break'){
              

            messageBox.value="Let's us take a break together at tcc."; 

         }


    

    }



}


function showEvents(url, year, month, day){

    var eventslist = document.getElementById('eventslist'); 

          
          
          
          

        window.location=url+"?year="+year+"&month="+month+"&day="+day;
    


}
