<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Entier Studio</title>
<script type="text/javascript">
// Morten's JavaScript Tree Menu
// version 2.3.1, dated 2002-02-02
// http://www.treemenu.com/
// Copyright (c) 2001-2002, Morten Wang & contributors
// All rights reserved.
// This software is released under the BSD License which should accompany
// it in the file "COPYING". If you do not have this file you can access
// the license through the WWW at http://www.treemenu.com/license.txt
// Nearly all user-configurable options are set to their default values.
// Have a look at the section "Setting options" in the installation guide
// for description of each option and their possible values.
var relocateURL = "/";
if( parent.frames.length == 0 ) {
if( document.images )
location.replace(relocateURL);
else
location = relocateURL;
}
</script>
<script type="text/javascript" src="scripts/treeview.js"></script>
<script type="text/javascript" id="menu">
<!--
/******************************************************************************
* User-configurable options. *
******************************************************************************/
// Menu table width, either a pixel-value (number) or a percentage value.
MTMTableWidth = "100%";
// Name of the frame where the menu is to appear.
MTMenuFrame = "side";
// Name of the frame which contains code.html
MTMCodeFrame = "code";
// Variable for determining menu behaviour
MTMSubsGetPlus = "Always";
MTMEmulateWE = true;
MTMAlwaysLinkIfWE = true;
// Directory of menu images/icons
MTMenuImageDirectory = "images/";
// Options for controlling the menu document
MTMDOCTYPE = '<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">';
MTMcontentType = "text/html; charset=ISO-8859-1";
// Variables for controlling colors in the menu document.
// Regular BODY atttributes as in HTML documents.
MTMbgcolor = "window";
MTMBackground = "";
MTMTextColor = "#00CCFF";
// color for all menu items
MTMLinkColor = "#333367";
// Hover color, when the mouse is over a menu link
MTMAhoverColor = "#3366FF";
// Foreground color for the tracking, clicked submenu and not linked submenu items.
// The latter only applies when MTMEmulateWE is true and MTMAlwaysLinkIfWE is false.
MTMTrackColor = "#CCFFCC";
MTMSubExpandColor = "blue";
MTMSubClosedColor = "blue";
MTMSubTextColor = "#00CCFF";
// All options regarding the root text and it's icon
MTMRootIcon = "menu_root.gif";
MTMenuText = "<b>Workspace</b>";
MTMRootColor = "#3366FF";
MTMRootFont = "Arial, Helvetica, sans-serif";
MTMRootCSSize = "80%";
MTMRootFontSize = "-2";
// Font for menu items.
MTMenuFont = "Arial, Helvetica, sans-serif";
MTMenuCSSize = "72%";
MTMenuFontSize = "-1";
// Variables for style sheet usage
// 'true' means use a linked style sheet.
MTMLinkedSS = true;
MTMSSHREF = "../styles/treeview.{USERBROWSER}.css";
// Scrollbar colour properties. Supported by IE5.5 and newer versions.
// Set MTMuseScrollbarCSS to "true" then set the various colour properties
// as strings. If you want the browser's default values, use "none".
MTMuseScrollbarCSS = true;
MTMscrollbarBaseColor = "none";
MTMscrollbarFaceColor = "none";
MTMscrollbarHighlightColor = "none";
MTMscrollbarShadowColor = "none";
MTMscrollbar3dLightColor = "none";
MTMscrollbarArrowColor = "none";
MTMscrollbarTrackColor = "none";
MTMscrollbarDarkShadowColor = "none";
// Header & footer, these are plain HTML.
MTMHeader = ""
MTMFooter = "";
// Whether you want an open sub-menu to close automagically
// when another sub-menu is opened. 'true' means auto-close
MTMSubsAutoClose = false;
// This variable controls how long it will take for the menu
// to appear if the tracking code in the content frame has
// failed to display the menu. Number if in tenths of a second
// (1/10) so 10 means "wait 1 second".
MTMTimeOut = 10;
// Message to pop up when a user right-clicks in the menu frame
MTMrightClickMessage = "";
// URL for a linked JavaScript file (.js), this URL is relative to the directory where code.html is located
MTMLinkedJSURL = "";
MTMLinkedInitFunction = "";
// Cookie usage.
MTMUseCookies = true;
MTMCookieName = "E_Studio_TID";
MTMCookieDays = null;
MTMTrackedCookieName = "E_Studio_TRA";
// Tool tips. A true/false-value defining whether the support for tool tips should exist or not.
MTMUseToolTips = true;
////////
// Main menu.
var menu= null;
menu= new MTMenu();
//-->
</script>
<script type="text/javascript">
<!--
function LoadCodeOnIE ( page )
{
//
var load= window.document.scripts["load"];
if( typeof( load ) != "undefined" )
{
var code= page.document.scripts["load"];
if( typeof( code ) != "undefined" )
{
//
window.onerror=fnErrorTrap;
//
load.text =code.text;
//
LoadMenu();
}
}
}
function LoadCode ( page )
{
//
var load= document.getElementById( "load" );
if( typeof( load ) != "undefined" )
{
var code= page.document.getElementById( "load" );
if( typeof( code ) != "undefined" )
{
//
load.innerHTML = code.innerHTML;
//
LoadMenu();
}
}
}
function LoadMenu ()
{
//
var jsCode = "MakeMenu();";
//
if( window.ActiveXObject )
window.execScript ( jsCode, "javascript" );
else
setTimeout ( "eval('" + jsCode.replace( /'/g, "\\'" ) + "')", 0 );
//
MTMStartMenu();
}
function LoadPage ()
{
//
var page = window.parent.frames["tree"];
if( typeof( page ) != "undefined" )
{
//
if( MTMUA.browserType != "IE" )
LoadCode( page );
else
LoadCodeOnIE( page );
}
}
function fnErrorTrap(sMsg,sUrl,sLine)
{
//
return true;
}
//-->
</script>
<script type="text/javascript" id="load"></script>
</head>
<body bgcolor="#ffffff" onload="LoadPage()">
<span id="delay" name="delay" style="visbility:hidden" onclick="DelayAlert();"></span>
</html>