function DisplayImages()
{
	var i;
	
	for (i=0;i<this.comments.length;i++)
	{
		name = '"../images/company/' + this.name + "_" + (i+1) + '.gif"';
		smallName = '"../images/company/' + this.name + "_s" + (i+1) + '.gif"';
		comment = '"'+ this.comments[i] +'"';
		document.write("<A href='#' onClick='CreateWindow("+ name +","+ comment +");'><IMG src="+ smallName +" border=0 alt=" +comment+ "></A>&nbsp");
		if (!((i+1)%4))
			document.write("<BR>");
	}
}

function CCategory(commonName,comments)
{
	this.name = commonName;
	this.comments = comments;
	this.DisplayImages = DisplayImages;
}
