function validatePartnerLogin(f) {
	var bErrorFound = false;
	var strErrorMsg = 'Please correct the following problems:\n';

	if (empty(f.vUsername)) {
		strErrorMsg = strErrorMsg + '\n - Username is required';
		bErrorFound = true;
	}

	if (empty(f.vPassword)) {
		strErrorMsg = strErrorMsg + '\n - Password is required';
		bErrorFound = true;
	}

	if (bErrorFound == true) {
		alert(strErrorMsg);
		return false;
	} else {		
		return true;	
	}	
}