function news06_showGallery(theId, theLang) {
		w_width = 740;
		w_height = 650;

	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=yes,scrollbars=yes';

	fparam = 'templates/ws_mm_news_06/showphotogallery.php?pageid=' + theId+'&lang=' + theLang;
  window.news06_showGalleryWindow = open(fparam, 'news06_showGalleryWindow', theWindowParam);
	setTimeout('if(news06_showGalleryWindow&&!news06_showGalleryWindow.closed)news06_showGalleryWindow.focus()',100);
}
function news06_ShowPhotoSrc(theId, theFile, theDescId, theDesc) {

	if (document.getElementById) {
		var c = document.getElementById(theId);
		if (c.style.display != "block") {
			c.innerHTML = '<img src="' + theFile + '">';
		} else {
			c.innerHTML = '<img src="../../layout/images/transparent.gif">';
			c.style.display="none";
		}
	}
	document.getElementById(theId).alt = theDesc;
	document.getElementById(theDescId).value = theDesc;
}
