function ImageDes(alias, htmlcode,widthL,heightL) 
{
	this.alias    = alias;
	this.htmlcode = htmlcode;
	this.photos   = null;
	this.width    = widthL;
	this.height   = heightL;
}

Images = new Array("");

inx = 0;
Images[inx  ] = new ImageDes("Bar", "bar",1020,678);
Images[inx++].photos = new Array("00","01");

Images[inx  ] = new ImageDes("Sphere", "sphere",1020,678);
Images[inx++].photos = new Array("00","01","02","03");

Images[inx  ] = new ImageDes("Simple", "simple",1020,678);
Images[inx++].photos = new Array("00","01","02","03");

Images[inx  ] = new ImageDes("Room simple OpenGL realtime view", "roomGL",1020,678);
Images[inx++].photos = new Array("00");

Images[inx  ] = new ImageDes("Room OpenGL realtime voxel view", "roomv",1020,678);
Images[inx++].photos = new Array("00","01");

Images[inx  ] = new ImageDes("Room OpenGL realtime view, with radiosity lightmaps", "room",1020,678);
Images[inx++].photos = new Array("00","01","02","03","04","05");

