/**
 *
 * Copyright (c) 2002-2004 Bluetetra Software.  All rights reserved.
 *
 *
 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED.  IN NO EVENT SHALL BLUETETRA SOFTWARE BE LIABLE FOR 
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE 
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS 
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER 
 * IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR 
 * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN 
 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *  
 * http://www.bluetetra.com
 *
 */

var target = "content";
var tiFileName = "typeTreeIndex.htm";
var nsFilterFileName = "nsFilter.htm";

function TN (href, prefix, ns, name, relation, simpletypeflag, children) {
	this.href = href;
	this.prefix = prefix;
	this.namespace = ns;
	this.name = name;
	this.relation = relation;
	this.simpletypeflag = simpletypeflag;
	this.children = children;

	this.hasChild = (children != null) && (children.length>0);	
}

function T (typeTree)
{
	this.typeTree = typeTree;
}

function typetree_showAllTypes() {
	parent._nsFilter = null;
	parent.componentIndex.location.href= tiFileName;
}

function typetree_filterTypes () {
	parent._href = tiFileName;
	window.open(nsFilterFileName, "_blank", 
		"height=200,width=400,location=no,menubar=no,scrollbars=yes,status=yes,resizable=yes,toolbar=no");
}

function typetree_showTypes() {
	if (parent._nsFilter == null) {
		typetree_setFilterToAll();
	}

	var nsList = parent._nsFilter;
	var typetrees = new Array();
	var nss = new Array();

	for (var i=0; i<nsList.length; i++) {
		typetrees [i] = typetreeDB [nsList[i]];	
		nss[i] = nsList[i];
	}		
	
	typetree_showTree (nss, typetrees); 
}

function typetree_setFilterToAll() {
	var nsList = new Array();
	var i = 0;

	for (var ns in typetreeDB) {
		nsList[i] = ns; 		
		i++;
	}

	parent._nsFilter = nsList;
}


function typetree_showTree (nsList, typetrees) {
	for (var i=0; i<nsList.length; i++) {
		var fpath = typetreeNSMap[nsList[i]];
		
		var str = '<div class="nsBox"><div class="itemNS">'+
			'<nobr><img style="cursor: pointer" src="img/minus.gif" hspace="2" align="middle" onclick="IClick(this)">'+
			'<a class="chref" href="'+fpath+
			'" title="'+encodeURI(nsList[i])+
			'" target="'+target+'">'+encodeURI(nsList[i])+'</a></nobr></div>'+
			'<div style="margin-left: 0.5em">';		

		document.write (str);

		typetree_outputList (typetrees[i].typeTree);
		

		document.write ('</div></div>');
	}
} 

function typetree_outputList (list) {
	for (var i=0; i<list.length; i++) {
		typetree_outputTree (list[i]);
	}
}

function typetree_outputTree (node) {
	if (node.hasChild == false) {
		typetree_outputLeaf (node);
	} else {
		typetree_outputNonLeaf (node);
	}
}


function typetree_outputLeaf (node) {
	var str = null;
	var nodeStr = null;

	if (node.prefix.length>0) {
		nodeStr = prefixedAnchorString(node)
	} else {
		nodeStr = anchorString (node)
	}

	str = '<span class="leaf"><nobr>' +
		  '<img src="img/leaf.gif" hspace="2" align="middle">' + 
		  nodeStr + '</nobr></span><br />';

	document.write (str);
}

function prefixedAnchorString (node) {
	return  '<a class="chref" href="'+node.href+
			'" target="'+target+ '"'+
			' title="ns=' + encodeURI(node.namespace)+'">'+
			node.prefix+':'+'</a>'+
			'<a class="chref" href="'+node.href+'" target="'+target+ '"'+
			' title="ns=' + encodeURI(node.namespace)+'">'+ node.name +
			'</a>'+typetree_getNodeIcon(node);
}

function anchorString (node) {
	return 	'<a class="chref" href="'+node.href+'" target="'+target+'"'+
			' title="ns=' + encodeURI(node.namespace)+'">'+ node.name +
			'</a>'+typetree_getNodeIcon(node);

}

function typetree_outputNonLeaf (node) {
	var str = null;
	var nodeStr = null;

	if (node.prefix.length>0) {
		nodeStr = prefixedAnchorString(node);
	} else {
		nodeStr = anchorString (node);
	}
		
	str = '<div><div class="nonleaf">'+
			'<nobr><img style="cursor: pointer" src="img/minus.gif" hspace="2" align="middle" onclick="IClick(this)">'+
			nodeStr +
			'</nobr></div>'+
			'<div style="margin-left: 0.8em">';

	document.write (str);

	var childs = node.children;
	for (var i=0; i<childs.length; i++) {
		typetree_outputTree (childs[i]);
	}					

	document.write ('</div></div>');
}

function typetree_getNodeIcon(node) {
	var rStr = null;
	if (node.relation == "none") {
		rStr = "";
	} else if (node.relation == "extension") {
		rStr = '<img alt="derived by extension" border="0" hspace="2" align="middle" src="img/extension.gif">';
	
	} else if (node.relation == "restriction") {
		rStr = '<img alt="derived by restriction" border="0" hspace="2" align="middle" src="img/restriction.gif">';
	
	} else if (node.relation == "list") {
		rStr = '<img alt="derived by list" border="0" hspace="2" align="middle" src="img/list.gif">';
	
	} else if (node.relation == "union") {
		rStr = '<img alt="derived by union" border="0" hspace="2" align="middle" src="img/union.gif">';
	
	}
	
	var typeStr = null;
	
	if (node.simpletypeflag) {
		typeStr = '<img alt="simple type" border="0" hspace="2" align="middle" src="img/simple.gif">'; 
	} else {
		typeStr = '<img alt="complex type" border="0" hspace="2" align="middle" src="img/complex.gif">';	
	} 

	return typeStr + rStr;
}

var typetreeDB = new Array();
var typetreeNSMap = new Array();

typetreeDB ["urn:uddi-org:api_v2"] =  new T (new Array (new TN("urn_uddi-org_api_v2/complextype/add_publisherAssertions.htm#complexTypeDefinition_add_publisherAssertions","","urn:uddi-org:api_v2","add_publisherAssertions","none",false,null),new TN("urn_uddi-org_api_v2/complextype/address.htm#complexTypeDefinition_address","","urn:uddi-org:api_v2","address","none",false,null),new TN("urn_uddi-org_api_v2/complextype/assertionStatusItem.htm#complexTypeDefinition_assertionStatusItem","","urn:uddi-org:api_v2","assertionStatusItem","none",false,null),new TN("urn_uddi-org_api_v2/complextype/assertionStatusReport.htm#complexTypeDefinition_assertionStatusReport","","urn:uddi-org:api_v2","assertionStatusReport","none",false,null),new TN("urn_uddi-org_api_v2/complextype/authToken.htm#complexTypeDefinition_authToken","","urn:uddi-org:api_v2","authToken","none",false,null),new TN("urn_uddi-org_api_v2/complextype/bindingDetail.htm#complexTypeDefinition_bindingDetail","","urn:uddi-org:api_v2","bindingDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/bindingTemplate.htm#complexTypeDefinition_bindingTemplate","","urn:uddi-org:api_v2","bindingTemplate","none",false,null),new TN("urn_uddi-org_api_v2/complextype/bindingTemplates.htm#complexTypeDefinition_bindingTemplates","","urn:uddi-org:api_v2","bindingTemplates","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessDetail.htm#complexTypeDefinition_businessDetail","","urn:uddi-org:api_v2","businessDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessDetailExt.htm#complexTypeDefinition_businessDetailExt","","urn:uddi-org:api_v2","businessDetailExt","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessEntity.htm#complexTypeDefinition_businessEntity","","urn:uddi-org:api_v2","businessEntity","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessEntityExt.htm#complexTypeDefinition_businessEntityExt","","urn:uddi-org:api_v2","businessEntityExt","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessInfo.htm#complexTypeDefinition_businessInfo","","urn:uddi-org:api_v2","businessInfo","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessInfos.htm#complexTypeDefinition_businessInfos","","urn:uddi-org:api_v2","businessInfos","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessList.htm#complexTypeDefinition_businessList","","urn:uddi-org:api_v2","businessList","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessService.htm#complexTypeDefinition_businessService","","urn:uddi-org:api_v2","businessService","none",false,null),new TN("urn_uddi-org_api_v2/complextype/businessServices.htm#complexTypeDefinition_businessServices","","urn:uddi-org:api_v2","businessServices","none",false,null),new TN("urn_uddi-org_api_v2/complextype/categoryBag.htm#complexTypeDefinition_categoryBag","","urn:uddi-org:api_v2","categoryBag","none",false,null),new TN("urn_uddi-org_api_v2/complextype/contact.htm#complexTypeDefinition_contact","","urn:uddi-org:api_v2","contact","none",false,null),new TN("urn_uddi-org_api_v2/complextype/contacts.htm#complexTypeDefinition_contacts","","urn:uddi-org:api_v2","contacts","none",false,null),new TN("urn_uddi-org_api_v2/complextype/delete_binding.htm#complexTypeDefinition_delete_binding","","urn:uddi-org:api_v2","delete_binding","none",false,null),new TN("urn_uddi-org_api_v2/complextype/delete_business.htm#complexTypeDefinition_delete_business","","urn:uddi-org:api_v2","delete_business","none",false,null),new TN("urn_uddi-org_api_v2/complextype/delete_publisherAssertions.htm#complexTypeDefinition_delete_publisherAssertions","","urn:uddi-org:api_v2","delete_publisherAssertions","none",false,null),new TN("urn_uddi-org_api_v2/complextype/delete_service.htm#complexTypeDefinition_delete_service","","urn:uddi-org:api_v2","delete_service","none",false,null),new TN("urn_uddi-org_api_v2/complextype/delete_tModel.htm#complexTypeDefinition_delete_tModel","","urn:uddi-org:api_v2","delete_tModel","none",false,null),new TN("urn_uddi-org_api_v2/complextype/discard_authToken.htm#complexTypeDefinition_discard_authToken","","urn:uddi-org:api_v2","discard_authToken","none",false,null),new TN("urn_uddi-org_api_v2/complextype/discoveryURLs.htm#complexTypeDefinition_discoveryURLs","","urn:uddi-org:api_v2","discoveryURLs","none",false,null),new TN("urn_uddi-org_api_v2/complextype/dispositionReport.htm#complexTypeDefinition_dispositionReport","","urn:uddi-org:api_v2","dispositionReport","none",false,null),new TN("urn_uddi-org_api_v2/complextype/find_binding.htm#complexTypeDefinition_find_binding","","urn:uddi-org:api_v2","find_binding","none",false,null),new TN("urn_uddi-org_api_v2/complextype/find_business.htm#complexTypeDefinition_find_business","","urn:uddi-org:api_v2","find_business","none",false,null),new TN("urn_uddi-org_api_v2/complextype/find_relatedBusinesses.htm#complexTypeDefinition_find_relatedBusinesses","","urn:uddi-org:api_v2","find_relatedBusinesses","none",false,null),new TN("urn_uddi-org_api_v2/complextype/find_service.htm#complexTypeDefinition_find_service","","urn:uddi-org:api_v2","find_service","none",false,null),new TN("urn_uddi-org_api_v2/complextype/find_tModel.htm#complexTypeDefinition_find_tModel","","urn:uddi-org:api_v2","find_tModel","none",false,null),new TN("urn_uddi-org_api_v2/complextype/findQualifiers.htm#complexTypeDefinition_findQualifiers","","urn:uddi-org:api_v2","findQualifiers","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_assertionStatusReport.htm#complexTypeDefinition_get_assertionStatusReport","","urn:uddi-org:api_v2","get_assertionStatusReport","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_authToken.htm#complexTypeDefinition_get_authToken","","urn:uddi-org:api_v2","get_authToken","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_bindingDetail.htm#complexTypeDefinition_get_bindingDetail","","urn:uddi-org:api_v2","get_bindingDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_businessDetail.htm#complexTypeDefinition_get_businessDetail","","urn:uddi-org:api_v2","get_businessDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_businessDetailExt.htm#complexTypeDefinition_get_businessDetailExt","","urn:uddi-org:api_v2","get_businessDetailExt","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_publisherAssertions.htm#complexTypeDefinition_get_publisherAssertions","","urn:uddi-org:api_v2","get_publisherAssertions","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_registeredInfo.htm#complexTypeDefinition_get_registeredInfo","","urn:uddi-org:api_v2","get_registeredInfo","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_serviceDetail.htm#complexTypeDefinition_get_serviceDetail","","urn:uddi-org:api_v2","get_serviceDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/get_tModelDetail.htm#complexTypeDefinition_get_tModelDetail","","urn:uddi-org:api_v2","get_tModelDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/hostingRedirector.htm#complexTypeDefinition_hostingRedirector","","urn:uddi-org:api_v2","hostingRedirector","none",false,null),new TN("urn_uddi-org_api_v2/complextype/identifierBag.htm#complexTypeDefinition_identifierBag","","urn:uddi-org:api_v2","identifierBag","none",false,null),new TN("urn_uddi-org_api_v2/complextype/instanceDetails.htm#complexTypeDefinition_instanceDetails","","urn:uddi-org:api_v2","instanceDetails","none",false,null),new TN("urn_uddi-org_api_v2/complextype/keyedReference.htm#complexTypeDefinition_keyedReference","","urn:uddi-org:api_v2","keyedReference","none",false,null),new TN("urn_uddi-org_api_v2/complextype/keysOwned.htm#complexTypeDefinition_keysOwned","","urn:uddi-org:api_v2","keysOwned","none",false,null),new TN("http://www.w3.org/TR/xmlschema-2/#NMTOKEN","","http://www.w3.org/2001/XMLSchema","NMTOKEN","none",true,new Array(new TN("urn_uddi-org_api_v2/simpletype/direction.htm#simpleTypeDefinition_direction","","urn:uddi-org:api_v2","direction","restriction",true,null),new TN("urn_uddi-org_api_v2/simpletype/keyType.htm#simpleTypeDefinition_keyType","","urn:uddi-org:api_v2","keyType","restriction",true,null),new TN("urn_uddi-org_api_v2/simpletype/truncated.htm#simpleTypeDefinition_truncated","","urn:uddi-org:api_v2","truncated","restriction",true,null),new TN("urn_uddi-org_api_v2/simpletype/URLType.htm#simpleTypeDefinition_URLType","","urn:uddi-org:api_v2","URLType","restriction",true,null))),new TN("urn_uddi-org_api_v2/complextype/overviewDoc.htm#complexTypeDefinition_overviewDoc","","urn:uddi-org:api_v2","overviewDoc","none",false,null),new TN("urn_uddi-org_api_v2/complextype/publisherAssertion.htm#complexTypeDefinition_publisherAssertion","","urn:uddi-org:api_v2","publisherAssertion","none",false,null),new TN("urn_uddi-org_api_v2/complextype/publisherAssertions.htm#complexTypeDefinition_publisherAssertions","","urn:uddi-org:api_v2","publisherAssertions","none",false,null),new TN("urn_uddi-org_api_v2/complextype/registeredInfo.htm#complexTypeDefinition_registeredInfo","","urn:uddi-org:api_v2","registeredInfo","none",false,null),new TN("urn_uddi-org_api_v2/complextype/relatedBusinessesList.htm#complexTypeDefinition_relatedBusinessesList","","urn:uddi-org:api_v2","relatedBusinessesList","none",false,null),new TN("urn_uddi-org_api_v2/complextype/relatedBusinessInfo.htm#complexTypeDefinition_relatedBusinessInfo","","urn:uddi-org:api_v2","relatedBusinessInfo","none",false,null),new TN("urn_uddi-org_api_v2/complextype/relatedBusinessInfos.htm#complexTypeDefinition_relatedBusinessInfos","","urn:uddi-org:api_v2","relatedBusinessInfos","none",false,null),new TN("urn_uddi-org_api_v2/complextype/result.htm#complexTypeDefinition_result","","urn:uddi-org:api_v2","result","none",false,null),new TN("urn_uddi-org_api_v2/complextype/save_binding.htm#complexTypeDefinition_save_binding","","urn:uddi-org:api_v2","save_binding","none",false,null),new TN("urn_uddi-org_api_v2/complextype/save_business.htm#complexTypeDefinition_save_business","","urn:uddi-org:api_v2","save_business","none",false,null),new TN("urn_uddi-org_api_v2/complextype/save_service.htm#complexTypeDefinition_save_service","","urn:uddi-org:api_v2","save_service","none",false,null),new TN("urn_uddi-org_api_v2/complextype/save_tModel.htm#complexTypeDefinition_save_tModel","","urn:uddi-org:api_v2","save_tModel","none",false,null),new TN("urn_uddi-org_api_v2/complextype/serviceDetail.htm#complexTypeDefinition_serviceDetail","","urn:uddi-org:api_v2","serviceDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/serviceInfo.htm#complexTypeDefinition_serviceInfo","","urn:uddi-org:api_v2","serviceInfo","none",false,null),new TN("urn_uddi-org_api_v2/complextype/serviceInfos.htm#complexTypeDefinition_serviceInfos","","urn:uddi-org:api_v2","serviceInfos","none",false,null),new TN("urn_uddi-org_api_v2/complextype/serviceList.htm#complexTypeDefinition_serviceList","","urn:uddi-org:api_v2","serviceList","none",false,null),new TN("urn_uddi-org_api_v2/complextype/set_publisherAssertions.htm#complexTypeDefinition_set_publisherAssertions","","urn:uddi-org:api_v2","set_publisherAssertions","none",false,null),new TN("urn_uddi-org_api_v2/complextype/sharedRelationships.htm#complexTypeDefinition_sharedRelationships","","urn:uddi-org:api_v2","sharedRelationships","none",false,null),new TN("http://www.w3.org/TR/xmlschema-2/#string","","http://www.w3.org/2001/XMLSchema","string","none",true,new Array(new TN("urn_uddi-org_api_v2/complextype/accessPoint.htm#complexTypeDefinition_accessPoint","","urn:uddi-org:api_v2","accessPoint","restriction",false,null),new TN("urn_uddi-org_api_v2/complextype/addressLine.htm#complexTypeDefinition_addressLine","","urn:uddi-org:api_v2","addressLine","restriction",false,null),new TN("urn_uddi-org_api_v2/simpletype/bindingKey.htm#simpleTypeDefinition_bindingKey","","urn:uddi-org:api_v2","bindingKey","restriction",true,null),new TN("urn_uddi-org_api_v2/simpletype/businessKey.htm#simpleTypeDefinition_businessKey","","urn:uddi-org:api_v2","businessKey","restriction",true,null),new TN("urn_uddi-org_api_v2/complextype/description.htm#complexTypeDefinition_description","","urn:uddi-org:api_v2","description","restriction",false,null),new TN("urn_uddi-org_api_v2/complextype/discoveryURL.htm#complexTypeDefinition_discoveryURL","","urn:uddi-org:api_v2","discoveryURL","restriction",false,null),new TN("urn_uddi-org_api_v2/complextype/email.htm#complexTypeDefinition_email","","urn:uddi-org:api_v2","email","restriction",false,null),new TN("urn_uddi-org_api_v2/complextype/errInfo.htm#complexTypeDefinition_errInfo","","urn:uddi-org:api_v2","errInfo","restriction",false,null),new TN("urn_uddi-org_api_v2/complextype/name.htm#complexTypeDefinition_name","","urn:uddi-org:api_v2","name","restriction",false,null),new TN("urn_uddi-org_api_v2/complextype/phone.htm#complexTypeDefinition_phone","","urn:uddi-org:api_v2","phone","restriction",false,null),new TN("urn_uddi-org_api_v2/simpletype/serviceKey.htm#simpleTypeDefinition_serviceKey","","urn:uddi-org:api_v2","serviceKey","restriction",true,null),new TN("urn_uddi-org_api_v2/simpletype/tModelKey.htm#simpleTypeDefinition_tModelKey","","urn:uddi-org:api_v2","tModelKey","restriction",true,null))),new TN("urn_uddi-org_api_v2/complextype/tModel.htm#complexTypeDefinition_tModel","","urn:uddi-org:api_v2","tModel","none",false,null),new TN("urn_uddi-org_api_v2/complextype/tModelBag.htm#complexTypeDefinition_tModelBag","","urn:uddi-org:api_v2","tModelBag","none",false,null),new TN("urn_uddi-org_api_v2/complextype/tModelDetail.htm#complexTypeDefinition_tModelDetail","","urn:uddi-org:api_v2","tModelDetail","none",false,null),new TN("urn_uddi-org_api_v2/complextype/tModelInfo.htm#complexTypeDefinition_tModelInfo","","urn:uddi-org:api_v2","tModelInfo","none",false,null),new TN("urn_uddi-org_api_v2/complextype/tModelInfos.htm#complexTypeDefinition_tModelInfos","","urn:uddi-org:api_v2","tModelInfos","none",false,null),new TN("urn_uddi-org_api_v2/complextype/tModelInstanceDetails.htm#complexTypeDefinition_tModelInstanceDetails","","urn:uddi-org:api_v2","tModelInstanceDetails","none",false,null),new TN("urn_uddi-org_api_v2/complextype/tModelInstanceInfo.htm#complexTypeDefinition_tModelInstanceInfo","","urn:uddi-org:api_v2","tModelInstanceInfo","none",false,null),new TN("urn_uddi-org_api_v2/complextype/tModelList.htm#complexTypeDefinition_tModelList","","urn:uddi-org:api_v2","tModelList","none",false,null),new TN("urn_uddi-org_api_v2/complextype/validate_values.htm#complexTypeDefinition_validate_values","","urn:uddi-org:api_v2","validate_values","none",false,null)));
typetreeNSMap ["urn:uddi-org:api_v2"] = "urn_uddi-org_api_v2/index.htm";
typetreeDB ["urn:uddi-org:repl"] =  new T (new Array (new TN("urn_uddi-org_repl/complextype/changeRecordID_type.htm#complexTypeDefinition_changeRecordID_type","","urn:uddi-org:repl","changeRecordID_type","none",false,null),new TN("urn_uddi-org_repl/complextype/highWaterMarkVector_type.htm#complexTypeDefinition_highWaterMarkVector_type","","urn:uddi-org:repl","highWaterMarkVector_type","none",false,null),new TN("http://www.w3.org/TR/xmlschema-2/#integer","","http://www.w3.org/2001/XMLSchema","integer","none",true,new Array(new TN("urn_uddi-org_repl/simpletype/USN_type.htm#simpleTypeDefinition_USN_type","","urn:uddi-org:repl","USN_type","restriction",true,null))),new TN("http://www.w3.org/TR/xmlschema-2/#string","","http://www.w3.org/2001/XMLSchema","string","none",true,new Array(new TN("urn_uddi-org_repl/simpletype/operatorName_type.htm#simpleTypeDefinition_operatorName_type","","urn:uddi-org:repl","operatorName_type","restriction",true,null),new TN("urn_uddi-org_repl/simpletype/operatorNodeID_type.htm#simpleTypeDefinition_operatorNodeID_type","","urn:uddi-org:repl","operatorNodeID_type","restriction",true,null),new TN("urn_uddi-org_repl/simpletype/operatorStatus_type.htm#simpleTypeDefinition_operatorStatus_type","","urn:uddi-org:repl","operatorStatus_type","restriction",true,null)))));
typetreeNSMap ["urn:uddi-org:repl"] = "urn_uddi-org_repl/index.htm";
								   



