<!doctype html> <html lang=“en”>

<head>
        <title>TestCentre &bull; Netfira WebConnect</title>
        <meta charset="UTF-8" />
<script src="globals.js"></script>
<script src="nf.js"></script>
<script src="nf.UI.js"></script>
<script src="test.js"></script>
<link rel="stylesheet" href="test.css"/>
</head>
<body>
        <ul id="menu">
                <h1><strong>Test</strong>Centre</h1>
                <a href="http://www.netfira.com.au/webconnect" title="Netfira WebConnect"><img src="logo.gif" id="logo" alt="Netfira WebConnect" /></a>
                <li class="first">
                        <a title="Create a new test script" id="btnNewTest" href="javascript:nf.Testing.add()">New</a>
                </li>
                <li>
                        <a title="Change the name of the current test" id="btnRenameTest" href="javascript:nf.Testing.rename()">Rename</a>
                </li>
                <li>
                        <a title="Delete the current test" id="btnDeleteTest" href="javascript:nf.Testing.del()">Delete</a>
                </li>
                <li>
                        <a title="Save all tests WebConnect's server-side database" id="btnSave" href="javascript:nf.Testing.save()">Save</a>
                </li>
                <li>
                        <a title="Import tests from a WebConnect test series" id="btnImport" href="javascript:nf.Testing.ImportExport.im()">Import</a>
                </li>
                <li>
                        <a title="Export tests to a WebConnect test series" id="btnExport" href="javascript:nf.Testing.ImportExport.ex()">Export</a>
                </li>
                <li class="last">
                        <a title="Run the current test" id="btnRunTest" href="javascript:nf.Testing.run()">Run &raquo;</a>
                </li>
        </ul>
        <div id="dashboard">
                <ul id="tests">

                </ul>
                <ul id="options">

                </ul>
        </div>
        <div id="editor">
                 <div id="sourceContainer">
                        <textarea id="source"></textarea>
                </div>
        </div>
        <div id="results">
                <ul id="actions">

                </ul>
                <div id="actionsShadow">&nbsp;</div>
        </div>
        <div id="busy">&nbsp;</div>
        <div id="importExport" style="display:none">
                <div class="info import">Paste a WebConnect test series here. Current tests will be overwritten.</div>
                <div class="info export">Copy the text below and paste it into a text file, email etc.</div>
                <textarea id="series"></textarea>
                <ul>
                        <li><a href="javascript:nf.Testing.ImportExport.ok()">OK</a></li>
                        <li class="import"><a href="javascript:nf.Testing.ImportExport.cancel()">Cancel</a></li>
                </ul>
        </div>
</body>

</html>