		// ********************************************************************************************************************
		// Javascript function to open a page in a new window
		// Requires a page name 
		// ********************************************************************************************************************

		function popwin(targetPage)
		{
			window.open(targetPage,"_popwin","height=400,location=no,menubar=no,resizeable=no,scrollbars=yes,status=no,toolbar=no,width=600");
		}
		
		// ********************************************************************************************************************
		// Javascript function to open a thumbnail photo in a new window
		// Requires a page name, height and width attributes
		// ********************************************************************************************************************
		
		function thumbnail_Opener(targetPage, imgWidth, imgHeight)
		{
			var openStatement = 'window.open("';
			openStatement += targetPage;
			openStatement += '","_thumbwin","height=';
			openStatement += (imgHeight + 25);
			openStatement +=',location=no,menubar=no,resizeable=no,scrollbars=no,status=no,toolbar=no,width=';
			openStatement += (imgWidth + 20);
			openStatement += '")';
			
			eval(openStatement);
		}
		