function chkForm(){

	val1 = document.login.username.value
	val2 = val1.toLowerCase()
	val3 = document.login.password.value
	val4 = val3.toLowerCase()

		if(val2 == 'texas' && val4 == '2008'){
			window.location = "http://www.buyreducedhomes.com/catalog.php"
		}else{
			alert('That is the wrong username and password, please check it again or use the form below to register to recieve the username and password to the FREE members area.')
		}


}
