    // File Name: AEScript.js
    // 
    // Created By: James Williams
    //
    // Last Modified: 8/30/2010
        
    // This script checks to see if everything in the Login Form is filled out
    
function LoginCheck()
{
    var good, response;
	good = true;
	
	if ((document.Login.username.value.length==0) || (document.Login.username.value==null))
    {
    	response = confirm("Please Fill out the entire form.")
    	good = false;
    }
    
	else if ((document.Login.psword.value.length==0) || (document.Login.psword.value==null))
    {
    	response = confirm("Please Fill out the entire form.")
    	good = false;
    }

    return good;
}
