public function loadMessage($_type, $_status)
{
$_nodes = $this->xmlTree->xpath("/root/messages/{$_type}[@status='$_status']");
if ($_nodes)
return "<div class=\"{$this->main_settings->message_class}\">" . utf8_decode($_nodes[0]) . '</div>';
else
throw new errorHandler(__CLASS__. " -> No message found in XML for \"$_status\"");

}