function launchSM(lessonId) {
    var newWin = window.open('/lessons/view/id/' + lessonId, 'SecurityMentorLessonWindow', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=991,height=670,left = 10,top = 10');
    newWin.focus();
}
    
function logout() {
    window.location = '/auth/logout';
}

function _ ( id ) {

  return document.getElementById(id);

}

function showEmail ( id, element ) {

  jQuery.post('/emailServer.php',{email_id:id},function(data){
      
    _(element).innerHTML=
    
    '<a href="mailto:'+data+'">'+data+'</a>'
    
    ;
    
    
  });

}
