// Miscellaneous core Javascript functions for Moodle function popUpProperties(inobj) { op = window.open(); op.document.open('text/plain'); for (objprop in inobj) { op.document.write(objprop + ' => ' + inobj[objprop] + '\n'); } op.document.close(); } function fillmessagebox(text) { document.form.message.value = text; } function copyrichtext(textname) { /// Legacy stub for old editor - to be removed soon return true; } function checkall() { void(d=document); void(el=d.getElementsByTagName('INPUT')); for(i=0;i