/* *** Global Variables *** */
var Logik_DataStr       = String("");
var Logik_WinStack      = [];    /* Current displayed windows (STACK) */
var Logik_FuncStack     = [];    /* Functions Stack */
var Logik_FuncStackUEV  = [];    /* Seperate Userevent Stack (2DO!) */
var Logik_FuncUEVObj    = null;           /* Contains the reference to the calling function */
var Logik_TargetElemObj  = null;          /* Points the element that should get the function value */
var Logik_TargetElemTyp  = null;
var Cancel = false;
var Logik_Hover; 	/*Dialog specific Hoverpictures, will be overwritten by each Dialog*/
var Logik_Help;   /*Dialog specific Help files or Help strings*/
var Logik_Lang;   /*Language variable  (for logik_messagehandler.js)*/
var Logik_RCVLoadFlag = false; /*RCV_Flag is set when RCVs Loaded*/
/*Global Mouseposition*/
var Logik_MouseX = null;
var Logik_MouseY = null;
/*Position of Window who fired Event*/
var Logik_SourceWinX = null;
var Logik_SourceWinY = null;
/*Table Specific global Variables*/
var Logik_GridParamArray = [];
var Logik_TableAllowEnterCell = false;
/*Experimental*/
var Logik_IFrame = {};
Logik_IFrame.tenabled = false;
Logik_IFrame.src = "";
Logik_IFrame.posX= "0px";
Logik_IFrame.posY= "0px";
Logik_IFrame.twidth = "100px";
Logik_IFrame.theight= "100px";
Logik_IFrame.tborder= "1px solid black";
Logik_IFrame.zOrder= 600;
/* Modes: */
/*   ni = Not Initialised */             /* At the beginning and after Term() this is the state */
/*    i = Initialised */                 /* Init ready, waits for input */
/* nbsy = Not Busy */
/*  bsy = Busy */
/* nuev = Not Busy and in Userevent Mode */
/*  uev = Busy and in Userevent Mode */
/*error = error case */
var Logik_SrvBsy = "ni";
var Logik_MainPath = parent.Logik_ScriptPath;
var Logik_DialogStatus ="";	
/******************************System Checks************************************/
if (!navigator.cookieEnabled)
	document.write('<p style="font-weight:bold; color:red;background-color:yellow;text-align:center; border: 2px inset red">Warning: Cookies are disabled! To use the configurator,enable the cookies...</p>');

