// class ScreenShot
function ScreenShot(_shot_file, _thumb_file, _title, _desc)
{
	this.shot_file = '_img/' + _shot_file
	this.thumb_file = '_img/' + _thumb_file
	this.title = _title
	this.description = _desc
	
	this.ShowThumb = function(_name)
	{
		text = '<font size="2" face="Arial, Helvetica, sans-serif"><a href="screenshot.htm?id='
		text += this.id + '">'
		text += '<img alt=\"' + this.description + '\"'
		text += ' src="' + this.thumb_file +'" border="2">'
		text += '</a>'
		text += '<br>'
		text += '<span class="blocLegend">' + this.title + '</span>'
		text += '</font>'
		document.write(text)
	}
}

var screenshots = new Array()

