function showItem(iid,show){
	var it = document.getElementById('table'+iid);
	if(it)
		it.style.borderColor=(show?'#b93a29':'');
}

function showMagicZoom(w,h,a){
	var im = document.getElementById('magicZoom');
	if(!im){
		return false;
	}
	im.href = a.href;
	im = im.firstChild;
	im.width=w; 
	im.height=h; 
	im.src = a.href;
	im = document.getElementById('enlargeImage');
	if(im)
		im.href = a.href;
	MagicZoom.refresh();
	return false;
};

var selectedImg = 0;
function showSelectedImg(){
	window.open(imgs[selectedImg][0],"img","width="+(imgs[selectedImg][1]+14)+",height="+(imgs[selectedImg][2]+20));
};