function popcal(vField, vMonth, vYear){
    var nW = window.open("", "calendar", "resizable=no,scrollbars=no,width=170,height=220");
    nW.location.href = "calendar.php?theField=" + vField + "&theMonth=" + vMonth + "&theYear=" + vYear;
    nW = null;
}