
function auth(name, password) {
	//this will be a form that will be on each page where a user can log in.
	//this should also check a cookie so the user doesn't have to log in each time.
	//if the user logs in or is logged in show the header and the body of the page.
	//users that have access:
	//logins:grauw,cathy
	//passwords:here,you
	//1.check logins for the login returned to page
	//2. check passwords
	//if both are valid return 1
}
