Make your own free website on Tripod.com

alvin madrid

cutest guy

This is the first paragraph.

This is the second paragraph.

This is a really interesting topic!

The Willows
21 Runnymede Avenue
Morton-in-the-marsh
Oxfordshire OX27 3BQ

    void Node::Remove()
    {
        if (prev)
            prev->next = next;
        else if (parent)
            parent->SetContent(null);

        if (next)
            next->prev = prev;

        parent = null;
    }