// JavaScript Document
function submitPw(){
	usr = document.getElementById("username").value;
	pw = document.getElementById("password").value;
	if(usr == "veetoys" & pw == "4pets"){
		document.getElementById("passwordFeedback").innerHTML = "Logging in...";
		window.location = "http://www.veeenterprises.com/productsGalleryPP.htm"
	}
	else{
		document.getElementById("passwordFeedback").innerHTML = "Incorrect Password";
	}
}
