function goSelection (count, obj)
{
	for (i = 0; i < count; i ++) {
		document.getElementById('list_' + i).style.display = 'none';
		document.getElementById('list_' + i + '_t').style.display = 'none';
	}
	
	document.getElementById(obj).style.display = 'block';
	
	document.getElementById('list_tt').style.display = 'none';
	
	document.getElementById(obj + '_t').style.display = 'block';
}

function openPhoto(path, alt, w, h, titl)
{
	var wo = window.open('', '_photo', 'width=' + w + ', height=' + h + ',scrollbars=0, menubar=0, titlebar=0, status=0, directories=0, resizable=0');
	
	wo.document.write('<html>');
	wo.document.write('<head>');
	wo.document.write('<title>' + titl + '</title>');
	wo.document.write('</head>');
	wo.document.write('<body leftmargin=0 topmargin=0 marginheight=0 marginwidth=0 bgcolor="#FFFFFF">');
	wo.document.write('<img style="cursor:pointer" src="' + path + '" border="0" vspace="0" hspcae="0" alt="' + alt +'" title="' + alt +'" OnClick="window.close();">');
	wo.document.write('</body>');
	wo.document.write('</html>');
	wo.focus();
	
	return false;
}