function fnSubmit()
{
	if (document.frmPost.username.value == 'AFLt' && document.frmPost.password.value == 'TINTEDLEI')
	{
		location.href = 'afl.html';
	}
	else if (document.frmPost.username.value == 'GENERAL' && document.frmPost.password.value == 'JYHAWAII')
	{
		location.href = 'general.html';
	}
	else if (document.frmPost.username.value == 'EMMA' && document.frmPost.password.value == 'MKHILO')
	{
		location.href = 'emma.html';
	}
	else if (document.frmPost.username.value == 'GOBLE' && document.frmPost.password.value == 'WKSTEM')
	{
		location.href = 'goble.html';
	}
	else if (document.frmPost.username.value == 'GOH' && document.frmPost.password.value == 'LIBerTY')
	{
		location.href = 'goh.html';
	}
	else if (document.frmPost.username.value == 'GULICK' && document.frmPost.password.value == 'HULA')
	{
		location.href = 'gulick.html';
	}
	else if (document.frmPost.username.value == 'INT' && document.frmPost.password.value == 'IFLOWER')
	{
		location.href = 'int.html';
	}
	else if (document.frmPost.username.value == 'MAUI FLORAL' && document.frmPost.password.value == 'KULA')
	{
		location.href = 'maui.html';
	}
	else if (document.frmPost.username.value == 'MYLENE' && document.frmPost.password.value == 'DAISY')
	{
		location.href = 'mylene.html';
	}
	else if (document.frmPost.username.value == 'PARADISE' && document.frmPost.password.value == 'PIKAKI')
	{
		location.href = 'pf.html';
	}
	else if (document.frmPost.username.value == 'RHL' && document.frmPost.password.value == 'FRANK')
	{
		location.href = 'rhl.html';
	}
	else if (document.frmPost.username.value == 'TIGER' && document.frmPost.password.value == 'TORCHID')
	{
		location.href = 'tiger.html';
	}
	else if (document.frmPost.username.value == 'WATANABE' && document.frmPost.password.value == 'ROSES')
	{
		location.href = 'wata.html';
	}
	else if (document.frmPost.username.value == 'MRD' && document.frmPost.password.value == 'CASEY')
	{
		location.href = 'index.html';
	}
else 
	{
		alert("Incorrect Username or Password.");
		return;
	}
}
