// A file containing format functions specific to the spider.html page
var _spiderWidth=35;
var _noColumns=8;

function spidertablestart(){
	document.write('<TABLE border=0><TR>');
}

function spidertableend(){
	document.write('</TR></TABLE>');
}

function spiderhead(info){
	spiderhead(info,_noColumns);
}


function spiderhead(info, nocolumns){
	document.write('<TH colspan='+_noColumns+'>'+info+'</TH>');
}

function setWidth(spider_width){
	_spiderWidth=spider_width;
}

function spidercell(page,image,explain,name){
	
	document.write('<TD><A HREF="'+page+'.html"><SPAN align=center><IMG NAME="'+name+'" SRC="'+image+'" height='+_spiderWidth+' ALT="'+explain+'" BORDER=0></SPAN>' + 
	'<BR><FONT SIZE=-2>'+explain+'</FONT></A></TD>');
}

function tableBreak(){
	document.write('</TR><TR>');
}
