// 
// HELP Documentation Functions
//
// This JavaScript provides quick help documentation in the Wizard Interface
//
// <script>HelpNote("HelpPage.htm","Note text shown beside the help icon in the document")</script>
//

helpmsg = "Click for more information";
blank = " ";


// ----------------------------------------------------------------------------------
// Function OpenNote is used to open the browser window and display the help document
// Copyright (c) 1999 - MAYA Heat Transfer Technologies Ltd
// Author: Arnold Free, March 19 1999
// Arguments:  HelpID{Int}            -  The index to the help document
// ----------------------------------------------------------------------------------
function OpenNote(HelpPage) {
   var WinWidth = 350;
   var WinHeight = 500;
   var WinLeft = screen.width/2;
   var WinTop = (screen.height-WinHeight)/2;
   
   window.open(HelpPage,"HelpWindow","width="+WinWidth+",height="+WinHeight+",left="+WinLeft+",screenX="+WinLeft+",top="+WinTop+",screenY="+WinTop+",scrollbars=1,resizable=1,toolbar=0,directories=0,status=0,location=0");

}

