
<!--//
/*This Script allows people to enter by using a form that asks for a UserID and Password*/
function pasuser(form) {
	if (form.id.value=="covenant") { 
		if (form.pass.value=="Egypt") { 
			setCookie("covenant","loginset");
			location="welcome.htm" 
		} 
		else {
			alert("Invalid Password")
		}
	} 
	else {  
		alert("Invalid UserID")
	}
}
function setCookie(name,value) {
	var nameString = name + "=" + value;
	var expires = new Date();
	expires.setTime (expires.getTime() + 60*60*1000);
//	var expiryString = (expires == null) ? " " : "; expires=" + expires.toGMTstring();
	document.cookie = nameString + "; expires=" + expires;
	}
//-->

