<!--//
/*This Script allows people to enter by using a form that asks for a
UserID and Password*/
function pasuser(form) 
{ 
	
 if ((form.id.value.toUpperCase() == "FLAMBEAU")  && (form.pass.value.toUpperCase()=="TECHE10") )
 {     
		location="sWelcome.htm" 
		return;
 } 

 if ((form.id.value.toUpperCase() == "FLAMBEAU")  && (form.pass.value.toUpperCase() =="IBERVILLE10") )
 { 
	location="dWelcome.htm" 
	return;
 }
 else
 {
	location="index.htm"
	return;
 }
}
//-->