home *** CD-ROM | disk | FTP | other *** search
- // Copyright 1999 Macromedia, Inc. All rights reserved.
-
- //--------------- GLOBAL VARIABLES ---------------
-
- var helpDoc = MM.HELP_objScript;
-
- //--------------- API FUNCTIONS ---------------
-
- function objectTag() {
- // Return the html tag that should be inserted
- var len = document.forms[0].script.value.length;
- var selInd = document.forms[0].Language.selectedIndex;
- var scriptLang = document.forms[0].Language.options[selInd].text
-
- if (len > 0 && document.forms[0].script.value.charAt(len - 1) != '\n')
- document.forms[0].script.value = document.forms[0].script.value + '\n';
-
- return '<script language="' + scriptLang + '">\n' + document.forms[0].script.value + '<\/SCRIPT>';
- }
-