<!--
				function ViewHelp(whichField) { 
				var win;
				var theText;
				win = window.open('', '', 'width=340,height=260,scrollbars=yes');
				switch (whichField) { 
				case "Location" : 
				theText = "<span class='empBlack'>Location:</span><br />NRD - Nordam Repair Division<br />NEL - Nordam Europe<br />NSPL - Nordam Singapore"; 
				break;
				case "Condition" : 
				theText = "<span class='empBlack'>Condition:</span><br />OH - Overhauled<br />AR - As Removed<br />WIP - In Repair<br />RP - Repaired<br />US - Unservicable<br />00 - Unknown"; 
				break;
				case "TagDate" : 
				theText = "<span class='empBlack'>Tag Date:</span><br />Date of the current overhaul or repair"; 
				break;
				case "Asset" : 
				theText = "<span class='empBlack'>Asset:</span><br />NORDAM tracking number"; 
				break;
				case "Model" : 
				theText = "<span class='empBlack'>Model:</span><br />Aircraft or Engine"; 
				break;
				case "Tips" : 
				theText = "<span class='empBlack'>Search Tips:</span><br />The search value is a contiguous string. Searching for ''VANE FLAP'' will not find ''VANE/FLAP'' or ''VANE, FLAP''.<br /><br />Choosing ''Any field'' in the pop-up menu searches every field <span class='bld'>except</span> the Location field."; 
				break;
				default : 
				theText = "There is no help for the item you clicked.";
				}
				win.document.open();
				win.document.write("<html>");
				win.document.write("<head><link rel='stylesheet' name='nordamstyle' href='/css/tng_main.css' /></head>");
				win.document.write("<body>");
				win.document.write("<p><table width='100%' cellpadding='10'><tr><td class='tngBody'>");
				win.document.write(theText);
				win.document.write("</td></tr></table></p></body></html>");
				win.document.close();
				}
//-->
