	function checkPW(form){
	
	uname = form.uname.value;
	pword = form.pword.value;
	
	if (uname != 'frf' || pword != 'frf2009') {
    alert ("\nIncorrect username and password, please try again.");
	return false;
	}
	else location.href="archive-list.html?data=s3cur3";
	return true;
	}