var slideTime = 700;
var topMargin = 100;
document.write('<IFRAME id="HelpFrame" style="position:absolute;left:10;top:10;width:140;height:auto;visibility:hidden;z-index:1000" src="javascript:false;" frameBorder="0" scrolling="no"></IFRAME>');
document.write('<DIV id="HelpDiv" STYLE="position:absolute;left:10;top:10;width:140;visibility:hidden;height:auto;z-index:1001"></div>');

var helpOn = true;
function showhelp(f) {
	if (f && helpOn) {
		f = f.toUpperCase();
		if (helptext[f]) {
			xInnerHtml('HelpDiv', '<p class="smalltext">'+helptext[f].text+'</p>');
			xWidth('HelpFrame',xWidth('HelpDiv'));
			xHeight('HelpFrame',xHeight('HelpDiv'));
			xMoveTo('HelpDiv', xPageX(f) + xWidth(f), xPageY(f) + xHeight(f));
			xMoveTo('HelpFrame', xPageX(f) + xWidth(f), xPageY(f) + xHeight(f));
			xShow('HelpDiv');
			xShow('HelpFrame');
		}
	}
}
function hidehelp() {
	xInnerHtml('HelpDiv','');
	xHide('HelpDiv');
	xHide('HelpFrame');
}

var helptext = {
	// loan information
	NONE: { text: '' }

};