//	<script language=javascript>

	///	<summary>
	///		This function opens a window with a page from the new catalogue
	///	</summary>	
	function openCataloguePage(nFileID)
	{
		nHeight = screen.availHeight - 100
		
		nWidth =760
		nTop = 0
		nLeft = ( screen.availWidth - nWidth - (screen.availWidth - nWidth) %2) / 2

		oWin = window.open('/ltemplates/mpShowCatPage.asp?fileID='+nFileID, 'katalog', 'width='+nWidth+',height='+nHeight+',top='+nTop+',left='+nLeft+'menubar=no,resizable=yes,scrollbars=yes,toolbar=no,status=no', true); 
		oWin.focus()
	}

//	</script>
