// **************************************************
// support@WebPage-Tools.com
// **************************************************
// Change "guest" to your desired Username below.
// Change "enter" to your desired Password below.
// You can also change the URL's to reflect your own.
// **************************************************
function authUser(form) {
	
	if (form.Username.value=="guest") { 
		if (form.Password.value=="northeast") { 
		    location="http://www.mindset2000.com/PSProgramme_NE/index.asp" 
		} else if (form.Password.value=="northeastesf") { 
		    location="http://www.mindset2000.com/ESF/index.asp"	
		} else if (form.Password.value=="southwest") { 
		    location="http://www.mindset2000.com/PSProgramme/index.asp" 
		} else if (form.Password.value=="southeast") { 
		    location="http://www.mindset2000.com/PSProgramme_SE/index.asp" 
		} else if (form.Password.value=="northwest") { 
		    location="http://www.mindset2000.com/PSProgramme_NW/index.asp" 
	
		} else { 
		   alert ("user name and/or password do not match please try again");
	    } 
	} else { 
		   alert ("user name and/or password do not match please try again");
}
}