function ValidateForgotPass(){

	var passID=document.change_pass.new_pass1
	var passID2=document.change_pass.new_pass2



	if ((passID.value==null)||(passID.value=="")){
		alert("Please Enter a NEW password")
		passID.focus()
		return false
	}


	if (passID.value!=passID2.value){
		alert("Passwords do not match, please enter matching passwords")
		return false
		passID.focus()
	}

	
}