//<!===
// JAVASCRIPT file to qualify passwords entered by
// users attempting to download Hood DATA upgrades.

function validatePassword(pwd) {
var tpwd = ""
tpwd += pwd
	
	if (tpwd == "22470") {
   		window.open("pwds/dl_hood_data.html","DownloadWindow","width=400,height=150")
	}
	else {
		window.open("pwds/pwd_error.html","PasswordError","width=400,height=150")
	}
}
//====>