Alert Causes Infinite Loop

I have this script…

txtPPM.onKillFocus = function(txtPPM)
{
import mx.controls.Alert;
Alert.show(“blah blah”);
};

When my focus shifts away from the txtPPM textfield I get an infinite loop error. I haven’t been able to find a successful method to fix this. Any suggetions?