/* Versturen van formulier */
function app_calendar_go(app_val_maand, app_val_jaar,app_con_calendar_url)
{
/* Doorsturen */
try { xmlhttp = window.XMLHttpRequest?new XMLHttpRequest(): new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) {}
xmlhttp.open("GET",app_con_calendar_url + '?maand=' + app_val_maand + '&jaar=' + app_val_jaar);
xmlhttp.send(null);
/* Verwerkt of niet */
xmlhttp.onreadystatechange = function() {if (xmlhttp.readyState==4){if (xmlhttp.status==200){document.getElementById('app_calendar').innerHTML = xmlhttp.responseText;} else {document.getElementById('app_calendar').innerHTML = 'Er is een fout opgetreden: ' + xmlhttp.statusText;}  }};
}

function app_calendar_show(nr){
$('#app_calendar_date_popup_' + nr).show();
}
function app_calendar_hide(nr){
$('#app_calendar_date_popup_' + nr).hide();
}
