import mx.controls.Alert;
public function checkValue(inputValue:String):void
{
if(inputValue.length < 5)
Alert.show("Are you sure there's not that much new?");
}
public function submitClicked():void
{
Alert.show("User says:" + whatsnew.text + " is new.");
}