document.write('<iframe id="HelpFrame" style="position:absolute;left:10;top:10;width:140;height:auto;display:none;z-index:1000" src="javascript:false;" frameBorder="0" scrolling="no"></iframe>');
document.write('<div id="HelpDiv" class="TipBox" style="position:absolute;left:10;top:10;width:140;display:none;height:auto;z-index:1001"></div>');

var helpOn = true;
function showhelp(f) {
	if (f && helpOn) {
		var fu = f.toUpperCase();
		if (helptext[fu]) {
			$('#HelpDiv').html('<p class="smalltext">'+helptext[fu].text+'</p>');
			$('#HelpFrame').width($('#HelpDiv').width());
			$('#HelpFrame').height($('#HelpDiv').height());

			var pos = $('#'+f).position();
			var height = $('#'+f).height();
			var width = $('#'+f).width();
			$("#HelpDiv").css( { left: (pos.left+width+5) + 'px', top: (pos.top+height+5) + 'px'} );
			$("#HelpFrame").css( { left: (pos.left+width+5) + 'px',top: (pos.top+height+5) + 'px'} );
			$('#HelpDiv').show();
			$('#HelpFrame').show();
		}
	}
}
function hidehelp() {
	$('#HelpDiv').html('');
	$('#HelpDiv').hide();
	$('#HelpFrame').hide();
}

function initHelp() {
}

var helptext = {
	// loan information
	NONE: { text: '' }

};
