			function showComment(nextURL,winID)
			{
				window.open(nextURL,winID,'width=500,height=280,left=10,top=10,resizable=yes,scrollbars=yes');
			}
			function showAlbum(nextURL)
			{
				window.open(nextURL,'albumWin','width=420,height=430,left=10,top=10,resizable=yes,scrollbars=yes');
			}
			function showContext(nextUrl,Password)
			{
				if (Password!='')
				{
					var str=window.prompt('Enter Password','');
					if (str)
					{
						nextUrl=nextUrl+'&Password='+str;
						location=nextUrl;
					}
				}
				else location=nextUrl;
			}
