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