
function displayfoot()
{
	//alert("I am here");
	document.write("<hr/>");
	document.write("<p><span class='strong underline'>Report Icon Functions</span></p>");

	document.write("<table cellpadding='3'>");

	document.write("<tr>");
	document.write("<td align='Right'><img src='../Images/export.gif' alt='Export this report'></td>");
	document.write("<td><p>Export this report</p></td>");
	document.write("<td align='Right'><img src='../Images/first.gif' alt='Go to first page'></td>");
	document.write("<td><p>Go to first page</p></td>");
	document.write("</tr>");

	document.write("<tr>");
	document.write("<td align='Right'><img src='../Images/print.gif' alt='Print this report'></td>");
	document.write("<td><p>Print this report</p></td>");
	document.write("<td align='Right'><img src='../Images/prev.gif' alt='Go to Previous page'></td>");
	document.write("<td><p>Go to Previous page</p></td>");
	document.write("</tr>");

	document.write("<tr>")
	document.write("<td align='Right'><img src='../Images/gotopage.gif' alt='Go to page'></td>");
	document.write("<td><p>Go to page you desire</p></td>");
	document.write("<td align='Right'><img src='../Images/next.gif' alt='Go to next page'></td>");
	document.write("<td><p>Go to next page</p></td>");
	document.write("</tr>");

	document.write("<tr>");
	document.write("<td align='Right'><img src='../Images/search.gif' alt='Search for text'></td>");
	document.write("<td><p>Search for text you desire</p></td>");
	document.write("<td align='Right'><img src='../Images/last.gif' alt='Go to last page'></td>");
	document.write("<td><p>Go to last page</p></td>");
	document.write("</tr>");

	document.write("<tr>");
	document.write("<td align='Right'><img src='../Images/grouptree.gif' alt='Show/Hide group tree'></td>");
	document.write("<td><p>Show/Hide group tree &nbsp;&nbsp;</p></td>");
	document.write("<td align='Right'>&nbsp;</td>");
	document.write("<td><p>&nbsp;</p></td>");
	document.write("</tr>");

	document.write("<tr>");
	document.write("<td align='Right'><img src='../Images/mainreport.gif' alt='View report group'></td>");
	document.write("<td><p>Select report group for view &nbsp;&nbsp;</p></td>");
	document.write("<td align='Right'><img src='../Images/viewsize.gif' alt='Report view size '></td>");
	document.write("<td><p>Select report view size</p></td>");
	document.write("</tr>");

	document.write("</table>");
}

