/** ********************************
 * file:       main.js
 * author:     Janne Louw
 * created:    14-feb-2006 12:05
 *
 * edit history:
 *
 *
 */
var Global = new Map();
function examTypeChanged(oRadio){
   var oForm = oRadio.form;
   window.document.getElementById('exam_id').selectedIndex = 0;
   window.document.getElementById('subexam_id').selectedIndex = 0;
   oRadio.form.submit();
}

function sendForm(oForm){
   oForm['formAction'].value = 'send';
   oForm.submit();
}