    function RemoveFrames() { 
    	if (self.location != top.location) top.location = self.location; 
    }

    RemoveFrames();
    
    function lfValidate() {
        var Mess = "";
	var lfLogin = document.loginForm.txtbxLN.value;
	var lfPW = document.loginForm.txtbxPW.value;

        if (lfLogin == "")	{ Mess+="   -Login Name.\n"; }
        if (lfPW == "")		{ Mess+="   -Password.\n"; }
        else 
        { 
            if (lfPW !="" & document.loginForm.txtbxLN.value.length <6)
            { Mess +="   -Login Name must be at least six characters long.\n"; }

            if (lfLogin !="" & document.loginForm.txtbxPW.value.length <6)
            { Mess +="   -Password must be at least six characters long.\n"; }
        }

        if (Mess != "")	{ alert("The following information was not supplied:\n" + Mess); }
        else 		{ document.loginForm.submit(); }
    }

    function passID(valuePassed) {
	document.forms.LID.value = valuePassed;
	document.forms.submit();
    }
