public XmlNode CreateNode(string name, string prefix)
{
if (this.XmlDoc == null)
throw new NullReferenceException("There is no XmlDocument loaded. Couldn't create Node "+name+" with Prefix "+prefix+". "+this.GetType().ToString());
string nuri = this.GetNamespaceUri(prefix);
return this.XmlDoc.CreateElement(prefix, name, nuri);
}