// (c) 2006 by BACAL software. All rights reserved. Do not copy or use code or code fragments
// without explicite permission of BACAL software.

// Module: GlobalConstants
// Purpose: Make document wide constants accessible. 

var application_name = "loizziTimeControl";
var application_version = "1.0.0.3b";
var help_version = "1.0.1.3 [H20061229-2[de-DE]]";

function GetApplicationName()
{
   return document.write(application_name);
}

function GetApplicationVersion()
{
   return document.write(application_version);
}

function GetHelpVersion()
{
   return document.write(help_version);
}