/////////////////////////////////////////////////////////////////////////////
// Copyright (c) 2007, 2008, Oracle. All rights reserved.
// Function : SiteMapPlain
// Comments : 
/////////////////////////////////////////////////////////////////////////////

// this version is heavily parameterised with "mainColor" and "hotColor" 
// just like the navigation fragments
// it might be better to leave it all to stylesheet edits...
// or - better still, leave it as server side stuff to generate the <style> defs 
// and the display code...

function PTE_HCSP_MAPA_PORTAL()
{
	this.m_TextColor  = '';
	this.m_HoverColor = '';
	this.m_FocusColor = '';
	this.m_ClassName  = 'SiteMapPlain';
	
	this.m_ShowHome   = false;
	this.m_ShowFocus  = false;	
	
	this.m_NavPath    = g_navNode_Path;
		
	PTE_HCSP_MAPA_PORTAL.prototype.Display = PTE_HCSP_MAPA_PORTAL_Display;
	PTE_HCSP_MAPA_PORTAL.prototype.DisplayNode = PTE_HCSP_MAPA_PORTAL_DisplayNode;
}

function PTE_HCSP_MAPA_PORTAL_Display (node)
{
	//document.write ('<div>');
	
	this.DisplayNode(node);
	
	//document.write ('</div>');
}



