

		function checkpw () 

		{



			var pw1 = document.BackListForm.Password.value;

			var uname = document.BackListForm.Username.value;

			if( pw1 == "New York" )

			{



				if( uname == "arts.mag" )		

				{

					document.BackListForm.action = 'J-BackListCorrect.html';

				}

				else

				{



					document.BackListForm.action = 'J-BackListIncorrect.html';

				}

			}

			else

			{



				document.BackListForm.action = 'J-BackListIncorrect.html';

			}

			

			document.BackListForm.submit();

			

		}

	
