116 lines
5.3 KiB
HTML
116 lines
5.3 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
<HTML>
|
|
<HEAD><META http-equiv="Content-Type" content="text/html; charset=utf-8">
|
|
<title>Journal entry information finder--results</title>
|
|
<meta name="Copyright" content="Copyright (c) 2002, 2006 by IBM Corporation">
|
|
<!-- All rights reserved. Licensed Materials Property of IBM -->
|
|
<!-- US Government Users Restricted Rights -->
|
|
<!-- Use, duplication or disclosure restricted by -->
|
|
<!-- GSA ADP Schedule Contract with IBM Corp. -->
|
|
<LINK rel="stylesheet" type="text/css" href="../rzahg/ic.css">
|
|
</HEAD>
|
|
<BODY>
|
|
<h2>Journal entry information finder</h2>
|
|
<!-- Java sync-link -->
|
|
<SCRIPT type="text/javascript" language="Javascript" src="../rzahg/iccommon.js"></SCRIPT>
|
|
<SCRIPT type="text/javascript" language="Javascript">
|
|
|
|
|
|
//START NON-TRANSLATABLE
|
|
//Obtain name of HTML file in parent frame.
|
|
var parentDir = parent.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|
var parentUrl = parent.window.location.href.substring(parentDir.length,parent.window.location.href.length+1);
|
|
if (parentUrl.indexOf("#") >= 0) { parentUrl = parentUrl.substring(0,parentUrl.indexOf("#"));}
|
|
//Is the hidden frame already loaded with the correct html?
|
|
if (parentUrl != "rzakifinder.htm") {
|
|
window.location = "rzakifinder.htm"; //load finder frameset
|
|
} else {
|
|
//Obtain name of HTML file in hidden frame.
|
|
var hiddenDir = parent.hidden.window.location.href.substring(0,location.href.lastIndexOf('/')+1);
|
|
var hiddenUrl = parent.hidden.window.location.href.substring(hiddenDir.length,parent.hidden.window.location.href.length+1);
|
|
if (hiddenUrl.indexOf("#") >= 0) { hiddenUrl = hiddenUrl.substring(0,hiddenUrl.indexOf("#"));}
|
|
if (hiddenUrl != "rzakijournalblank.htm") {
|
|
//Correct HTML not loaded, load it
|
|
parent.window.location = "rzakifinder.htm";
|
|
}
|
|
}
|
|
//END NON-TRANSLATABLE
|
|
var input = parent.hidden.placeholders[2].toUpperCase();
|
|
var tstring = "";
|
|
var blank = " ";
|
|
var textA = "<FONT SIZE='+1'>Results for '";
|
|
var textB = "'<\/FONT SIZE='+1'><P>Your search for journal codes and entry types returned the information shown below. You can use the links that follow or <A HREF='rzakijournalfinder.htm'>search again<\/A>.<\/P><HR><BR><BR>";
|
|
var textH = "<FONT SIZE='+1'>No matches found for '";
|
|
var textX = "'<\/FONT SIZE='+1'><P>Your search for journal codes did not find any results. <A HREF='rzakijournalfinder.htm'>Try again<\/A>.<\/P><\/table>";
|
|
var textJK = "<table COLS=5 WIDTH='100%' BORDER=1 CELLPADDING=6 CELLSPACING=0><TR valign=\"top\" class=\"finderbar\"><TH ID=\"COL1\" WIDTH='10%'>Journal code<\/TH><TH ID=\"COL2\" WIDTH='10%'>Entry type<\/TH><TH ID=\"COL3\" WIDTH='30%'>Description<\/TH><TH ID=\"COL4\" WIDTH='50%'>Notes<\/TH><\/TR>";
|
|
|
|
//START NON-TRANSLATABLE
|
|
var textC = "<tr valign=\"top\">";
|
|
var textD = "<\/td>";
|
|
var textE = "<td headers=\"COL1\">";
|
|
var textE2 = "<td headers=\"COL2\">";
|
|
var textE3 = "<td headers=\"COL3\">";
|
|
var textE4 = "<td headers=\"COL4\">";
|
|
var textF = "<\/td><\/tr>";
|
|
var textG = "<\/table><BR><BR>";
|
|
var textJ = "<table COLS=2 WIDTH='100%'>";
|
|
var textk = "<A HREF='";
|
|
var textm = "'>";
|
|
var textn = "<\/A>";
|
|
var brake = "<br><br>"
|
|
|
|
counter = 0;
|
|
document.write(textJ);
|
|
|
|
for (var i=0; i < parent.hidden.mycat.length; i++) {
|
|
for (var j=0; j < parent.hidden.mycat[i].length; j++) {
|
|
tstring = parent.hidden.jourcode[i][2] + parent.hidden.mycat[i][j][0];
|
|
if (parent.hidden.mycat[i][j][0] != 0) {
|
|
if ((tstring.search(input)) >= 0) {
|
|
if (counter == 0) {
|
|
document.write(textA + input + textB + textJK);
|
|
}
|
|
|
|
document.write(textC + textE + parent.hidden.jourcode[i][2] + textD + textE2 + parent.hidden.mycat[i][j][0] + textD + textE3 + parent.hidden.mycat[i][j][1] + textD + textE4);
|
|
if (parent.hidden.mycat[i][j][2] == 0 && parent.hidden.mycat[i][j][3] == 0) {
|
|
document.write(blank);
|
|
}
|
|
if (parent.hidden.mycat[i][j][2] != 0 && parent.hidden.mycat[i][j][3] == 0) {
|
|
document.write(parent.hidden.mycat[i][j][2]);
|
|
}
|
|
|
|
if (parent.hidden.mycat[i][j][2] == 0 && parent.hidden.mycat[i][j][3] != 0) {
|
|
document.write(parent.hidden.mycat[i][j][3]);
|
|
}
|
|
|
|
if (parent.hidden.mycat[i][j][2] != 0 && parent.hidden.mycat[i][j][3] != 0) {
|
|
document.write(parent.hidden.mycat[i][j][2] + brake + parent.hidden.mycat[i][j][3]);
|
|
}
|
|
document.write(textF);
|
|
counter = 1;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
if (counter == 0) {
|
|
document.write(textJ + textH + input + textX);
|
|
} else {
|
|
document.write(textG);
|
|
}
|
|
//END NON-TRANSLATABLE
|
|
</script>
|
|
<NOSCRIPT>This finder uses JavaScript. Your browser either does not
|
|
support JavaScript or does not have JavaScript enabled. For an an alternative
|
|
to this finder, see one of the following:<ul>
|
|
<li><a href="rzakijournalfinderall.htm">All journal codes and entry types</a>
|
|
<li><a href="rzakivarlength.htm">Variable-length portion of the
|
|
journal entry</a></li>
|
|
<li><a href="rzakifixlength.htm">Fixed-length portion of the
|
|
journal entry</a>
|
|
</ul>
|
|
</NOSCRIPT>
|
|
</body>
|
|
</html>
|
|
|