function getTextHelp(helpId) {
var texto = "";
if (helpId=="HID-8051") texto = "Se consideran los archivos que se hayan procesado dos dias antes";
return texto;
}
function HelpSystem() {
this.helpWin = null;
this.top = 20
this.left = 20;
this.width = 250;
this.height = 120;
}
function HelpSystem_show(helpId) {
this.open();
var doc = this.helpWin.document;
doc.writeln("");
doc.writeln(/*"Display Context for HelpId: */"" + getTextHelp(helpId) + "");
doc.writeln("
");
doc.writeln("");
doc.writeln("");
doc.writeln("");
}
function HelpSystem_open() {
if (null == this.helpWin || this.helpWin.closed) {
this.helpWin = window.open('', '', 'top=' + this.top + ',left=' + this.left + ',width=' + this.width + ',height=' + this.height + ',status=no,toolbar=no,location=no,resizable=no,scrollbars=no,menubar=no');
this.helpWin.title = 'HelpSystem';
} else {
this.helpWin.focus();
}
}
var Help = new HelpSystem();
HelpSystem.prototype.open = HelpSystem_open;
HelpSystem.prototype.show = HelpSystem_show;