<!--//Browsercheck objectfunction BrowsercheckObject() {    //Properties  this.Version = '';  this.msIE    = 0;    //Methods  this.BrowserCheck = objBCheck_BrowserCheck;    //Check Browser  this.BrowserCheck();    return;};function objBCheck_BrowserCheck () {  var DOM = document.getElementById?1:0;  if (!DOM) {    if (document.all) {      this.Version = 'oldie';    } else if (document.layers) {      this.Version = 'oldns';    };  } else {    var uAgent = navigator.userAgent.toLowerCase();    if (uAgent.indexOf('msie') != -1) {      this.msIE = 1;    };    this.Version = 'dom';  };  return;};var Browser = new BrowsercheckObject();//---------------------------------------//Timer Objectfunction TimerObject(ATime) {  //Properties  this.Time    = ATime;  this.TimerOn = null;  this.Active  = null;    //Methods  this.SetTimer   = objTimer_SetTimer;  this.ClearTimer = objTimer_ClearTimer;    return;};function objTimer_SetTimer(AID) {  this.TimerOn = setTimeout(AID+'.HideMenu()', this.Time);  this.Active  = AID;  return;};function objTimer_ClearTimer(AState) {  if (this.Active && AState == 1) {    eval(this.Active+'.HideMenu();');  };  clearTimeout(this.TimerOn);  return;};//---------------------------------------//Menu Objectfunction MenuObject(AID, APosX, APosY) {  //Properties  this.ID         = AID;  this.Xpos       = APosX;  this.Ypos       = APosY;  this.MenuActive = null;    //Methods  this.ShowMenu       = objMenu_ShowMenu;  this.HideMenu       = objMenu_HideMenu;  this.BtnTimer       = objMenu_BtnTimer;  this.Location       = objMenu_Location;    //Events  this.MenuOver   = objMenu_MenuOver;  this.MenuOut    = objMenu_MenuOut;    return;};function objMenu_ShowMenu () {    if (menuTimer.TimerOn) {      menuTimer.ClearTimer(1);    };    if (Browser.Version == 'dom' && Browser.msIE == 1) {      if(window.parent.mainFrame.document.readyState == 'complete') {        if(window.parent.mainFrame.document.getElementById(this.ID)) {          window.parent.mainFrame.document.getElementById(this.ID).style.top  = window.parent.mainFrame.document.body.scrollTop + 'px';          window.parent.mainFrame.document.getElementById(this.ID).style.left = this.Xpos + 'px';          window.parent.mainFrame.document.getElementById(this.ID).style.visibility = 'visible';        };      };    } else if (Browser.Version == 'dom') {      if(window.parent.mainFrame.document.getElementById(this.ID)) {        window.parent.mainFrame.document.getElementById(this.ID).style.top  = window.parent.mainFrame.document.body.scrollTop + 'px';        window.parent.mainFrame.document.getElementById(this.ID).style.left = this.Xpos + 'px';        window.parent.mainFrame.document.getElementById(this.ID).style.visibility = 'visible';      };    } else if (Browser.Version == 'oldie') {      if(window.parent.mainFrame.document.all[this.ID]) {        window.parent.mainFrame.document.all[this.ID].style.top  = window.parent.mainFrame.document.body.scrollTop + 'px';        window.parent.mainFrame.document.all[this.ID].style.left = this.Xpos + 'px';        window.parent.mainFrame.document.all[this.ID].style.visibility = 'visible';        };    };  return;};function objMenu_HideMenu () {  if (!this.MenuActive) {    if (Browser.Version == 'dom') {      window.parent.mainFrame.document.getElementById(this.ID).style.visibility = 'hidden';    } else if (Browser.Version == 'oldie') {      window.parent.mainFrame.document.all[this.ID].style.visibility = 'hidden';    };  };  return;};function objMenu_BtnTimer () {  menuTimer.SetTimer(this.ID);  this.MenuActive = 0;  return;};function objMenu_MenuOver () {  menuTimer.ClearTimer(0);  this.MenuActive = 1;  return;};function objMenu_MenuOut () {  menuTimer.SetTimer(this.ID);  this.MenuActive = 0;  return;};function objMenu_Location (ALink) {  window.parent.mainFrame.location = ALink;  return;};//-->