// JavaScript Document
function display_buttons()
{
	document.write('<table width="100%" border="0" cellspacing="0" cellpadding="0">');
	document.write('<tr><td class="btn"><a href="index.html">Home</a></td></tr>');
	document.write('<tr><td class="btn"><a href="about_us.html">About us</a></td></tr>');
    document.write('<tr><td class="btn"><a href="instruction.html">Instruction</a></td></tr>');
    document.write('<tr><td class="btn"><a href="gallery.html">Gallery</a></td></tr>');
    document.write('<tr><td class="btn"><a href="call_for_paper.html">Call for Abstracts</a></td></tr>');
    document.write('<tr><td class="btn"><a href="sponsorship.html">Sponsorship</a></td></tr>');
    document.write('<tr><td class="btn"><a href="mode.html">Registration</a></td></tr>');
	document.write('<tr><td class="btn"><a href="venue.html">Venue</a></td></tr>');
    document.write('<tr><td class="btn"><a href="contact_us.html">Contact us</a></td></tr>');
    document.write('<tr><td><p>&nbsp;</p><p>&nbsp;</p></td></tr></table>');
}
function footer()
{
	document.write('<a href="index.html">Home</a>&nbsp; |&nbsp;<a href="about_us.html"> About us</a> &nbsp;|&nbsp;<a href="instruction.html">');
	document.write('&nbsp;Instruction</a>&nbsp;&nbsp;|&nbsp;&nbsp;<a href="gallery.html">Gallery</a> &nbsp;|&nbsp;&nbsp;<a href="sponsorship.html">');
	document.write('Sponsorship</a> &nbsp;&nbsp;| &nbsp;&nbsp;<a href="mode.html">Mode of registration</a>&nbsp;&nbsp;|&nbsp;&nbsp;');
	document.write('<a href="contact_us.html">Contact us</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;www.hft2009.org');
	document.write('All rights are reserved. Site by <a href="http://www.prowebs.co.in" target="_blank">Prowebs</a>');
}