Previous Topic

Next Topic

Book Contents

Modifying the trial protocol HTML files

After you create the HTML files for the trial protocol, make the following modifications:

  1. Replace the </head> and <body> tags at the beginning of each file with the following Javascript function definition and call:

    <script language="Javascript">
    function OnLoad()
    {
    %s
    }
    </script>
    </head>

    <body ONLOAD="OnLoad()">

    Note: Do not include this Javascript function and call in the Table of Contents file.

  2. Search each file for percent signs (%), for example in table width specifications. Except for the %s string substitution command that appears in the OnLoad function definition at the beginning of each file, precede each % sign with another % sign as an escape character. For example:

    StudyProtocolHTMLCode1

  3. Search each file for exclamation points (!). To include an exclamation point in the text of the trial protocol, insert an additional explanation point as an escape character. For example:

    StudyProtocolHTMLCode2

  4. Use HTML formatting tags as necessary to create a document whose structure is clear and easy to understand. The following formatting conventions are suggested:
    • Code the protocol title as an <h1> tag. For example:

      StudyProtocolHTMLCode3

    • Code the name of each protocol section as an <h2> tag. For example:

      StudyProtocolHTMLCode4

Send Feedback