Use this method to create a duplicate of a node :
N
N.cloneNode(deep)
The returned value is the newly created copy.
If the
argument is false, you get just a copy of deep. If
N is
true, you get a copy of deep, complete with copies of
all its descendant nodes attached.
N