//////////////////////////////////////////////////////////////////////////
// The following functions just make the menu page look pretty
// Nothing to do with getting the applet to work!
//////////////////////////////////////////////////////////////////////////


function dispHead()
{

	img1 = "piece1a.jpg";
	img2 = "copyrightlogo3.gif";
	img3 = "piece2a.jpg";
	img4 = "piece3.jpg";


text = 
'<MAP NAME="steer"><AREA SHAPE="RECT" COORDS="20,181,91,205" HREF="http://www.imint.com/try.htm">'+
'<AREA SHAPE="RECT" COORDS="16,205,81,228" HREF="http://www.imint.com/buy.htm">'+
'<AREA SHAPE="RECT" COORDS="8,227,81,252" HREF="mailto:info@imint.com">'+
'<AREA SHAPE="RECT" COORDS="5,253,82,275" HREF="http://www.imint.com"></MAP>'+
'<table width=780 border=0 cellpadding=0 cellspacing=0><tr><td colspan=3 width=600 '+
'valign=top><IMG SRC=' + img1 + ' WIDTH=600 HEIGHT=90 '+
'BORDER=0 alt="IMINT.COM: java solutions for website navigation"></td>'+
'<td rowspan=2 width=180 valign=top><img src=' + img2 + ' width=180 height=190 ' +
'border=0 alt="Logo"></td>'+
'</tr><tr><td rowspan=2 width=100 '+
'valign=top><IMG SRC=' + img3 + ' WIDTH=100 HEIGHT=310 '+
'BORDER=0 alt="Vital links" USEMAP="#steer"></td><td width = 140 '+
'valign=top><IMG SRC=' + img4 + ' WIDTH=140 HEIGHT=100 '+
'BORDER=0 alt=""></td><td valign=top>';
	
	document.write(text);

}

function dispMid()
{

	document.write('</td></tr><tr><td colspan=2 width=500 valign=top>');

}

function dispFoot()
{

text0 = '';


text2 = '<FONT SIZE=1 FACE="Arial,Helvetica"><dir>'+
'<li><A HREF="http://www.imint.com/islide">Documentation</A>'+
'<li><A HREF="http://www.imint.com/support/sp000.htm">Support</A>'+
'</dir></FONT>';




text = '<td valign=top width=180><table border=0 bgcolor="f8f8f8" width=180 cellpadding=5 cellspacing=0><tr><td>';

text +=  text2 + '</td></tr></table>';


	text += '<HR NOSHADE><CENTER><FONT SIZE=1 FACE="ARIAL">&copy; Image Intelligence Ltd.<BR>';
	document.write(text);
	text ='<BR><A HREF="http://www.imint.com">http://www.imint.com</A><BR>' +
		'</font></CENTER></td></tr></table>';
	document.write(text);


}



