sonjeir - 2007-10-15

    /**
    * itemIconURL
    *
    * This function returns the url of a icon
    * for an item from a character sheet from the armory
    *
    * @param string[] $itemRef   The item icon ref from the character info array.
    * @param string[] example    $itemRef = $char['characterinfo']['charactertab']['items']['item']['0']['icon'];
    * @return string             The URL of the icon
    * @author Tony Gritton <sonjeir@bellsouth.net>
    */
    function itemIconURL($itemRef) {
       
        return $this->armory."images/icons/51x51/".$itemRef.".jpg";
       
    }