// -------- Set Vars -----------
var users = new Array()
var pass = new Array()
	users[1] = 'Admin'; pass[1] = 'rumbar01'	//Leave this Username for Webmaster (you) but change password
//Add/change user names here & Add/chage passwords here
	users[1] = 'andrew'; pass[1] = '9821755'	//User1 name & password
	users[2] = 'fay'; pass[2] = '2410366'	//User2
	users[3] = 'garfield'; pass[3] = '1370'	//User3
	users[4] = 'member'; pass[4] = 'wisc'	//ect
	users[5] = 'sue'; pass[5] = 'wisctd'
	users[6] = 'terrence'; pass[6] = 'wiscsh'
var wrighturl = '_wisc_private/member9ihoh__230098 m_fgdf53sod3480__345345345f71i8sdss-sdfgbfbfqz_ik0kz4.html'	//Page you want the user to go to if Password is wright
var wrongurl = 'wrong.html'	//  "   "   "    "   "   "  "  "  "    "   "  "  wrong

//-----------------------------------------
//----------- Leave this alone ------------
function isPass(){
	var dn = document.nameenter
	userN = dn.usern.value
	passV = dn.pass.value
	if (userN.length < 1){ alert('Enter Username'); return false }
	if (passV.length < 1){ alert('Enter Password'); return false }
	for (var i = 0; i < users.length ; i++){
	if (users[i] == userN && pass[i] == passV){ location.href = wrighturl; return false}
	if (users[i] == userN && pass[i] != passV){ location.href = wrongurl; return false}
	}
	location.href = wrongurl
}
function list(){
	userO=window.open('about:blank','winID','height=400,width=200,top=100,left=100,location=no,menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no')
	userO.document.write('<u><big> List Of Users </big></u><br> \n')
	for (var u = 0; u < users.length; u++){
		userO.document.write(' &raquo; ' + users[u] + "<br> \n")
	}
	userO.document.write('<a href="javascript:window.close()"> Close </a>')
}
//------------------------------------------
//------------------------------------------
//       DISCLAIMER
// USE SCRIPT AT OWN RISK
