\r
<SCRIPT LANGUAGE="JavaScript">\r
<!-- //hide\r
+\r
+function popUpProperties(inobj) {\r
+ op = window.open();\r
+ op.document.open('text/plain');\r
+ for (objprop in inobj) {\r
+ op.document.write(objprop + ' => ' + inobj[objprop] + '\n');\r
+ }\r
+ op.document.close();\r
+}\r
+\r
function fillmessagebox(text) {\r
- document.form.message.value = text;\r
+ document.form.message.value = text;\r
}\r
\r
function openpopup(url,name,height,width) {\r
- fullurl = "<?=$CFG->wwwroot ?>" + url;\r
- options = "menubar=0,location=0,scrollbars,resizable,width="+width+",height="+height;\r
- windowobj = window.open(fullurl,name, options);\r
- windowobj.focus();\r
+ fullurl = "<?=$CFG->wwwroot ?>" + url;\r
+ options = "menubar=0,location=0,scrollbars,resizable,width="+width+",height="+height;\r
+ windowobj = window.open(fullurl,name, options);\r
+ windowobj.focus();\r
}\r
\r
function copyrichtext(textname) { \r
- textname.value = document.richedit.docHtml;\r
- return true;\r
+ textname.value = document.richedit.docHtml;\r
+ return true;\r
}\r
\r
<? if ($focus) { echo "function setfocus() { document.$focus.focus() }\n"; } ?>\r