Tore Christiansen

Changed type to html

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="Tittel" content=""/>
<meta name="Emne" content=""/>
<meta name="Kategori" content=""/>
<meta name="Nøkkelord" content=""/>
<meta name="Beskrivelse" content=""/>
<meta name="Forfatter" content="Tore Christiansen"/>
<meta name="Overordnet" content=""/>
<meta name="Firma" content="IDI-NTNU"/>
<title>20141017 ILAP 2</title>
<script src="20141017 ILAP 2.0 Ontology Model-filer/frameset.js" type="text/javascript" language="javascript"></script>
<script type="text/javascript" language="javascript" >
function FileEntry (pageIndex, pageID, pageName, priImage, secImage)
{
this.PageIndex = pageIndex;
this.PageID = pageID;
this.PageName = pageName;
this.PriImage = priImage;
this.SecImage = secImage;
}
var viewMgr = null;
var g_FileList = new Array(
new FileEntry (1, 16, "ILAP Topstructure", "vml_1.htm", "png_1.htm"),
new FileEntry (2, 94, "ILAP HQPC", "vml_2.htm", "png_2.htm"),
new FileEntry (3, 85, "ILAP Asset Lifecycle", "vml_3.htm", "png_3.htm"),
new FileEntry (4, 93, "ILAP LC2", "vml_4.htm", "png_4.htm"),
new FileEntry (5, 88, "ILAP Plan Hierarchy", "vml_5.htm", "png_5.htm"),
new FileEntry (6, 78, "ILAP Classification", "vml_6.htm", "png_6.htm"),
new FileEntry (7, 95, "ILAP CL2", "vml_7.htm", "png_7.htm"),
new FileEntry (8, 58, "ILAP Reference Data", "vml_8.htm", "png_8.htm"),
new FileEntry (9, 102, "ILAP Planning Core", "vml_9.htm", "png_9.htm"),
new FileEntry (10, 123, "Schedule", "vml_10.htm", "png_10.htm"),
new FileEntry (11, 111, "Facility", "vml_11.htm", "png_11.htm"),
new FileEntry (12, 110, "Discipline", "vml_12.htm", "png_12.htm"),
new FileEntry (13, 113, "Phase", "vml_13.htm", "png_13.htm"),
new FileEntry (14, 109, "Milestone", "vml_14.htm", "png_14.htm"),
new FileEntry (15, 103, "Risk", "vml_15.htm", "png_15.htm"),
new FileEntry (16, 114, "Shutdown", "vml_16.htm", "png_16.htm"),
new FileEntry (17, 112, "Priority", "vml_17.htm", "png_17.htm"),
new FileEntry (18, 115, "Criticality", "vml_18.htm", "png_18.htm"),
new FileEntry (19, 116, "Expense", "vml_19.htm", "png_19.htm"),
new FileEntry (20, 117, "Status", "vml_20.htm", "png_20.htm"),
new FileEntry (21, 106, "User Fields", "vml_21.htm", "png_21.htm"),
new FileEntry (22, 118, "WBS", "vml_22.htm", "png_22.htm"),
new FileEntry (23, 120, "UserField1", "vml_23.htm", "png_23.htm"),
new FileEntry (24, 119, "UserField2", "vml_24.htm", "png_24.htm"),
new FileEntry (25, 98, "ILAP Import", "vml_25.htm", "png_25.htm"),
new FileEntry (26, 99, "ILAP Data Exchange", "vml_26.htm", "png_26.htm")
);
var g_CurPageIndex = 0;
var g_ZoomLoaded = false;
var g_WidgetsLoaded = false;
var g_FileProtocol = "file://";
var g_HLMenuEntry = "menuEntry";
var g_HLMenuEntryDiv = "menuEntryDiv";
var g_LoadingWidgets = false;
var isSVG = g_FileList[g_CurPageIndex].PriImage.indexOf("svg") >= 0;
var isVML = g_FileList[g_CurPageIndex].PriImage.indexOf("vml") >= 0;
var isXAML = g_FileList[g_CurPageIndex].PriImage.indexOf("xaml") >= 0;
function CViewMgr(convertedImgID, highlightDivID)
{
this.onResize = null;
this.ApplyZoom = null;
this.ChangingView = false;
this.put_Location = ViewMgrDefaultFind;
this.Zoom = ViewMgrDefaultResize;
this.PostZoomProcessing = null;
this.setView = null;
this.PostSetViewProcessing = null;
this.viewChanged = null;
this.SupportsDetails = false;
this.SupportsSearch = false;
this.visBBoxLeft = 0.0;
this.visBBoxRight = 0.0;
this.visBBoxBottom = 0.0;
this.visBBoxTop = 0.0;
this.highlightDiv = null;
this.stepWidth = 10;
this.id = convertedImgID;
this.zoomFactor = -1;
this.zoomLast = -1;
this.origWH = 1;
this.origWidth = 100;
this.aspectRatio = 1;
this.docDrawing = null;
var docDrawing = frmDrawing.document;
if(docDrawing)
{
this.docDrawing = docDrawing;
var docEl = docDrawing.getElementById(this.id);
if (!docEl)
docEl = docDrawing.childNodes[0];
this.s = docEl.style;
this.origWidth = this.s.pixelWidth;
this.origWH = this.s.pixelWidth / this.s.pixelHeight;
this.highlightDiv = docDrawing.getElementById(highlightDivID);
}
this.loadPage = DefPageLoad;
this.getPNZ = null;
}
function DefPageLoad (pageIndex)
{
if (pageIndex >= 0)
{
var curPath = frmDrawing.location.href;
var fileDelim = curPath.lastIndexOf ('/');
if (fileDelim == -1)
fileDelim = curPath.lastIndexOf ('\\');
var newPath = curPath.substring (0, fileDelim + 1);
newPath += g_FileList[pageIndex].PriImage;
frmDrawing.location.href = newPath;
SetPNZDisplay (pageIndex);
}
}
function CurPageUpdate (pageIndex)
{
if (pageIndex >= 0)
{
g_CurPageIndex = pageIndex;
SetCurPageInGoto (pageIndex);
var divDetails = frmToolbar.document.getElementById("divDetails");
if (divDetails)
{
var displayStatus = "block";
if (!viewMgr || !viewMgr.SupportsDetails)
{
displayStatus = "none";
}
divDetails.style.display = displayStatus;
}
var divSearch = frmToolbar.document.getElementById("divSearch");
if (divSearch)
{
var displayStatus = "block";
if (!viewMgr || !viewMgr.SupportsSearch)
{
displayStatus = "none";
}
divSearch.style.display = displayStatus;
}
SetPNZDisplay (pageIndex);
LoadZoom ();
}
}
function FramePageLoaded ()
{
if (isUpLevel && viewMgr == null)
{
var curPath = frmDrawing.location.href;
var fileDelim = curPath.lastIndexOf ('/');
if (fileDelim >= 0)
{
var fileName = curPath.substring (fileDelim + 1, curPath.length);
var pageIndex = PageIndexFromFileName (fileName);
SetCurPageInGoto (pageIndex);
SetPNZDisplay (pageIndex);
}
}
}
function LoadZoom ()
{
var zoomWidget = frmToolbar.frames["ifrmPNZ"];
if (zoomWidget)
{
if (g_ZoomLoaded)
{
zoomWidget.findContent();
PageLoadedDoCallback ();
}
else
{
window.setTimeout("LoadZoom()", 500);
}
}
else
{
PageLoadedDoCallback ();
}
}
function SetCurPageInGoto (pageIndex)
{
var gotoPageSelect = frmToolbar.document.getElementById("Select1");
if (gotoPageSelect != null)
{
gotoPageSelect.value = pageIndex;
}
}
function SetPNZDisplay (pageIndex)
{
var divPNZ = frmToolbar.document.getElementById("divPNZ");
if (divPNZ)
{
var displayStatus = "block";
if (g_FileList[pageIndex].PageID < 0)
{
displayStatus = "none";
}
divPNZ.style.display = displayStatus;
}
}
function ViewMgrDefaultFind()
{
return;
}
function ViewMgrDefaultResize(size)
{
return;
}
g_callBackFunctionArray = new Array();
function PageLoadedDoCallback()
{
if (g_WidgetsLoaded)
{
for( var i=0; i < g_callBackFunctionArray.length; i++ )
{
g_callBackFunctionArray[i]();
}
g_callBackFunctionArray = new Array();
}
else
{
window.setTimeout("PageLoadedDoCallback()", 500);
}
}
function ParseParams (strRawParams)
{
if ( strRawParams != null && strRawParams.length > 0 )
{
strRawParams = strRawParams.substring(1);
var arrayParamTokens = strRawParams.split('&');
for (var count = 0; count < arrayParamTokens.length; count++)
{
arrayParamTokens[count] = unescape(arrayParamTokens[count]);
this[count] = arrayParamTokens[count].substring(0, arrayParamTokens[count].indexOf('='));
this[this[count]] = arrayParamTokens[count].substring(arrayParamTokens[count].indexOf('=') + 1);
}
}
else
{
this[0] = null;
}
return this;
}
var gParams = ParseParams (location.search);
var g_PageParamValue = gParams['page'];
if (g_PageParamValue != null &&
g_PageParamValue.length > 0)
{
var pageIndex = PageIndexFromName (g_PageParamValue);
if (pageIndex > 0 && pageIndex < g_FileList.length)
{
g_CurPageIndex = pageIndex;
}
}
else
{
g_PageParamValue = null;
}
var g_FirstPageToLoad = g_PageParamValue;
var g_ZoomParamValue = gParams['zoom'];
if (g_ZoomParamValue != null && g_ZoomParamValue.length > 0)
{
g_ZoomParamValue = 1.0 * g_ZoomParamValue;
if (g_ZoomParamValue >= 10 && g_ZoomParamValue <= 500)
{
g_callBackFunctionArray[g_callBackFunctionArray.length] = function () { if (viewMgr && viewMgr.Zoom) { viewMgr.Zoom(g_ZoomParamValue); } };
}
}
var g_ShapeParamValue = gParams['shape'];
if (g_ShapeParamValue != null && g_ShapeParamValue.length > 0)
{
if (g_PageParamValue != null && g_PageParamValue.length > 0)
{
g_callBackFunctionArray[g_callBackFunctionArray.length] = function () { var shapeNode = FindShapeXMLByName (g_PageParamValue, g_ShapeParamValue); if (shapeNode) { frmToolbar.TreeSelect (g_FileList[g_CurPageIndex].PageID, shapeNode.attributes.getNamedItem ("ID").text); } };
}
else
{
g_ShapeParamValue = null;
}
}
var g_SearchParamValue = gParams['search'];
if (g_SearchParamValue != null && g_SearchParamValue.length > 0)
{
g_callBackFunctionArray[g_callBackFunctionArray.length] = function () { if (frmToolbar.theForm) { frmToolbar.theForm.findString.value = g_SearchParamValue; } };
g_callBackFunctionArray[g_callBackFunctionArray.length] = function () { var goButton = frmToolbar.document.getElementById('GoButton'); if(goButton) { goButton.click(); } };
}
var strHLTooltipText = "Klikk for å følge hyperkobling.";
var strPropsTooltipText = "Trykk Ctrl og klikk for å vise detaljer.";
var strFocusHLTooltipText = "Trykk Enter for å følge hyperkobling.";
var strFocusPropsTooltipText = "Trykk Ctrl + Enter for å vise detaljer.";
function UpdateTooltip (element, pageID, shapeID)
{
if (isUpLevel)
{
var strHL, strProps;
if(frmDrawing.event.type == "focus")
{
strHL = strFocusHLTooltipText;
strProps = strFocusPropsTooltipText;
}
else
{
strHL = strHLTooltipText;
strProps = strPropsTooltipText;
}
var strTooltip = "";
if (element.origTitle)
{
strTooltip = element.origTitle.toString();
}
var shapeNode = FindShapeXML (pageID, shapeID);
if( shapeNode != null )
{
var propColl = SelectNodes(shapeNode, "Prop");
if (propColl != null && propColl.length > 0)
{
if (strTooltip.length > 0)
{
strTooltip += "\n";
}
strTooltip += strProps;
}
}
var hlObj = GetHLAction (shapeNode, pageID, shapeID);
if (hlObj != null && (hlObj.DoFunction.length > 0 || hlObj.Hyperlink.length > 0))
{
if (strTooltip.length > 0)
{
strTooltip += "\n";
}
strTooltip += strHL;
}
element.title = strTooltip;
if (element.alt != null)
{
element.alt = strTooltip;
}
}
}
function GetHLAction (shapeNode, pageID, shapeID)
{
var hlObj = new HLObj ("", "", "", false);
if (shapeNode != null)
{
try
{
var hlColl = SelectNodes(shapeNode, "Scratch/B/SolutionXML/HLURL:Hyperlinks/HLURL:Hyperlink");
}
catch(err)
{
var hlColl = [];
}
if (hlColl.length > 1)
{
if(window.frmDrawing.event)
{
hlObj.DoFunction = "showMenu(" + pageID + ", " + shapeID + ");"
}
else // XAML
{
// Use default hyperlink to set the action
var fFoundDefault = false;
for (var count = 0; count < hlColl.length; ++count)
{
var hlDefault = SelectSingleNode(hlColl[count], "HLURL:Default/text()");
if (hlDefault != null && hlDefault.nodeValue.length > 0 &&
hlDefault.nodeValue == "1" /*Indicates that this is the default hyperlink <HLURL:Default>1</HLURL:Default>*/)
{
hlObj = CreateHLObj(hlColl[count]);
fFoundDefault = true;
break;
}
}
if (!fFoundDefault)
hlObj = CreateHLObj(hlColl[0]);
}
}
else if (hlColl.length == 1)
{
hlObj = CreateHLObj (hlColl[0]);
}
}
return hlObj;
}
function HLObj (strHyperlink, strDoFunction, strDesc, newWindow)
{
this.Hyperlink = strHyperlink;
this.DoFunction = strDoFunction;
this.Desc = strDesc;
this.NewWindow = newWindow;
}
function clickMenu()
{
var e = window.frmDrawing.event;
var menu = frmDrawing.document.getElementById("menu1")
if (menu != null && menu.style.display != "none")
{
menu.style.display="none";
if (e && e.srcElement && e.srcElement.doFunction != null)
{
eval(e.srcElement.doFunction);
}
}
}
function toggleMenuDiv(el, highlight)
{
var divEl = el;
var aEl = null;
var ID = el.id.substring (g_HLMenuEntryDiv.length, el.id.length) * 1.0;
aEl = frmDrawing.document.getElementById(g_HLMenuEntry + ID);
toggleMenu(divEl, aEl, highlight);
}
function toggleMenuLink(el, highlight)
{
var divEl = null;
var aEl = el;
var ID = el.id.substring (g_HLMenuEntry.length, el.id.length) * 1.0;
divEl = frmDrawing.document.getElementById(g_HLMenuEntryDiv + ID);
toggleMenu(divEl, aEl, highlight);
}
function toggleMenu(divEl, aEl, highlight)
{
if (highlight)
{
divEl.className="highlightItem";
aEl.className="highlightItem";
}
else
{
divEl.className="menuItem";
aEl.className="menuItem";
}
}
function showMenu(pageID, shapeID)
{
var shapeXML = FindShapeXML (pageID, shapeID);
if (shapeXML != null)
{
CreateHLMenu (shapeXML);
var menu = frmDrawing.document.getElementById("menu1");
if (menu != null)
{
menu.style.visibility = "hidden";
menu.style.display = "inline";
var clientWidth = frmDrawing.document.body.clientWidth;
var clientHeight = frmDrawing.document.body.clientHeight;
var menuWidth = menu.clientWidth;
var menuHeight = menu.clientHeight;
var doc = frmDrawing.document;
var e = window.frmDrawing.event;
if(e)
{
var elem = e.srcElement;
var menuLeft = e.x;
var menuTop = e.y;
var img = doc.getElementById("ConvertedImage");
if( (menuLeft + doc.body.scrollLeft < elem.offsetLeft) || (menuLeft + doc.body.scrollLeft > elem.offsetLeft + elem.offsetWidth + img.offsetLeft) )
{
menuLeft = elem.offsetLeft + img.offsetLeft + elem.offsetWidth/2;
}
if( (menuTop + doc.body.scrollTop < elem.offsetTop) || (menuTop + doc.body.scrollTop > elem.offsetTop + elem.offsetHeight + img.offsetTop) )
{
menuTop = elem.offsetTop + img.offsetTop + elem.offsetHeight/2;
}
var scrollBarSize = 20;
if (menuLeft + menuWidth > clientWidth - scrollBarSize)
{
menuLeft = clientWidth - menuWidth - scrollBarSize;
}
if (menuTop + menuHeight > clientHeight - scrollBarSize)
{
menuTop = clientHeight - menuHeight - scrollBarSize;
}
menu.style.posLeft = menuLeft + frmDrawing.document.body.scrollLeft;
menu.style.posTop = menuTop + frmDrawing.document.body.scrollTop;
menu.style.visibility = "visible";
var firstLink = frmDrawing.document.getElementById(g_HLMenuEntry + "0");
firstLink.focus ();
if (e.keyCode == 13)
{
toggleMenuLink(firstLink, true);
}
e.cancelBubble = true;
}
}
}
}
function MenuKeyDown ()
{
var e = window.frmDrawing.event;
var el = e.srcElement;
if (e.keyCode == 27) // 27 == ESC
{
clickMenu();
e.cancelBubble = true;
return;
}
var curSelID = el.id.substring (g_HLMenuEntry.length, el.id.length) * 1.0;
var newSelID = -1;
if (e.keyCode == 40) // 40 == down arrow
{
newSelID = curSelID + 1;
}
else if (e.keyCode == 38) // 38 == up arrow
{
newSelID = curSelID - 1;
}
var newSelEntry = frmDrawing.document.getElementById(g_HLMenuEntry + newSelID);
if (newSelEntry)
{
newSelEntry.focus();
var curSelEntry = frmDrawing.document.getElementById(g_HLMenuEntry + curSelID);
toggleMenuLink (curSelEntry, false);
toggleMenuLink (newSelEntry, true);
}
e.cancelBubble = true;
}
function CreateHLMenu (shapeNode)
{
var strHLMenuHTML = "";
if (shapeNode != null)
{
var hlColl = SelectNodes(shapeNode, "Scratch/B/SolutionXML/HLURL:Hyperlinks/HLURL:Hyperlink");
strHLMenuHTML = "<div class='innerhlMenu'>";
var hlCount = hlColl.length;
for (var count = 0; count < hlCount; count++)
{
var hlObj = CreateHLObj (hlColl[count]);
if (hlObj != null)
{
if (hlObj.Desc.length > 0)
{
strHLMenuHTML += "<div id='" + (g_HLMenuEntryDiv + count) + "' class='menuItem' onmouseover='toggleMenuDiv(this, true)' onmouseout='toggleMenuDiv(this, false)' onclick='" + (g_HLMenuEntry + count) + ".click()'>";
strHLMenuHTML += "<a href=";
if (hlObj.DoFunction.length > 0)
{
strHLMenuHTML += "'javascript:" + hlObj.DoFunction + "'";
}
else
{
var targetVal = "_top";
if (hlObj.NewWindow)
{
targetVal = "_blank";
}
strHLMenuHTML += "'" + hlObj.Hyperlink + "' target='" + targetVal + "'";
}
strHLMenuHTML += " class='menuItem' id='" + (g_HLMenuEntry + count) + "' onkeydown='parent.MenuKeyDown();' onmouseover='toggleMenuLink(this, true)' onmouseout='toggleMenuLink(this, false)'>";
strHLMenuHTML += hlObj.Desc + "</a></div>";
}
}
}
strHLMenuHTML += "</div>";
}
var menu = frmDrawing.document.getElementById("menu1")
menu.innerHTML = strHLMenuHTML;
}
function CreateHLObj (hlNode)
{
var strAddress = "";
var hlObj = new HLObj ("", "", "", false);
if (hlNode != null)
{
var hlAddress = SelectSingleNode(hlNode,"HLURL:Address/text()");
if (hlAddress != null && hlAddress.nodeValue.length > 0)
{
// Get AbsoluteURL
var absoluteURL = SelectSingleNode(hlNode,"HLURL:AbsoluteURL/text()");
var strAbsURL = "";
if (absoluteURL != null && absoluteURL.nodeValue.length > 0)
strAbsURL = absoluteURL.nodeValue;
// Get Address
var strAddr = hlAddress.nodeValue;
// Use relative address if AbsoluteURL is missing
if (strAbsURL == "")
{
strAddress = strAddr;
}
else if (strAbsURL.indexOf (g_FileProtocol) == 0)
{
var strAbsPath = strAbsURL.substring (g_FileProtocol.length, strAbsURL.length);
strAbsPath.toLowerCase ();
strAddr.toLowerCase ();
if (strAbsPath == strAddr)
{
strAddress = strAbsPath;
}
else
{
strAddress = strAddr;
var hlSubAddress = SelectSingleNode(hlNode,"HLURL:SubAddress/text()");
if (hlSubAddress != null && hlSubAddress.nodeValue.length > 0)
{
strAddress += '#';
strAddress += hlSubAddress.nodeValue;
}
var hlExtraInfo = SelectSingleNode(hlNode,"HLURL:ExtraInfo/text()");
if (hlExtraInfo != null && hlExtraInfo.nodeValue.length > 0)
{
strAddress += '?';
strAddress += hlExtraInfo.nodeValue;
}
}
}
else
{
strAddress = strAbsURL;
}
strAddress = HTMLEscape (strAddress);
hlObj.Hyperlink += strAddress;
}
else
{
hlAddress = SelectSingleNode(hlNode,"HLURL:SubAddress/text()");
if (hlAddress != null && hlAddress.nodeValue.length > 0)
{
strAddress = hlAddress.nodeValue;
var pageShapeSep = strAddress.lastIndexOf ('/');
if (pageShapeSep > 0)
{
if (PageIndexFromName (strAddress) < 0)
{
strAddress = unescape (strAddress);
if (PageIndexFromName (strAddress) < 0)
{
strAddress = strAddress.substring (0, strAddress.lastIndexOf ('/'));
}
}
}
var pageIndex = PageIndexFromName (strAddress);
hlObj.DoFunction = "GoToPage (" + pageIndex + ");";
strAddress = HTMLEscape (strAddress);
hlObj.Desc = strAddress;
}
}
hlDesc = SelectSingleNode(hlNode,"HLURL:Description/text()");
if (hlDesc != null && hlDesc.nodeValue.length > 0)
{
hlObj.Desc = HTMLEscape (hlDesc.nodeValue);
}
else
{
hlObj.Desc = strAddress;
}
var hlNewWindow = SelectSingleNode(hlNode,"HLURL:NewWindow/text()");
if (hlNewWindow != null && hlNewWindow.nodeValue.length > 0)
{
hlObj.NewWindow = (hlNewWindow.nodeValue == "1");
}
}
return hlObj;
}
</script>
</head>
<frameset id="frmstOuter" cols="237,*">
<frame src="20141017 ILAP 2.0 Ontology Model-filer/toolbar.htm" name="frmToolbar" id="frmToolbar" title="Denne rammen inneholder verktøy du kan bruke til å manipulere tegningen." frameborder="6" bordercolor="#999999" scrolling="no" marginheight="0" marginwidth="0" >
<frame src="20141017 ILAP 2.0 Ontology Model-filer/png_1.htm" name="frmDrawing" title="Denne rammen inneholder sidene i tegningen." marginheight="10" marginwidth="10" onload="if (parent.isUpLevel) FramePageLoaded()" >
<noframes>
<body>
<h1>20141017 ILAP 2</h1>
<ul>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_1.htm">ILAP Topstructure</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_2.htm">ILAP HQPC</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_3.htm">ILAP Asset Lifecycle</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_4.htm">ILAP LC2</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_5.htm">ILAP Plan Hierarchy</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_6.htm">ILAP Classification</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_7.htm">ILAP CL2</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_8.htm">ILAP Reference Data</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_9.htm">ILAP Planning Core</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_10.htm">Schedule</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_11.htm">Facility</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_12.htm">Discipline</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_13.htm">Phase</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_14.htm">Milestone</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_15.htm">Risk</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_16.htm">Shutdown</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_17.htm">Priority</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_18.htm">Criticality</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_19.htm">Expense</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_20.htm">Status</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_21.htm">User Fields</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_22.htm">WBS</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_23.htm">UserField1</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_24.htm">UserField2</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_25.htm">ILAP Import</a></li>
<li><a href="20141017 ILAP 2.0 Ontology Model-filer/png_26.htm">ILAP Data Exchange</a></li>
</ul>
</body>
</noframes>
</frameset>
</html>