/////////////////////////////////////////////////////////////////////////////
// Function : EuropeaWebLogo
// Comments : 
/////////////////////////////////////////////////////////////////////////////

function EuropeaWebLogo(strLogo, strWidth, strHeight)
{
	this.m_Logo		= ssAssetsPath + 'logo.gif';
	
	this.m_Width	= '';
	this.m_Height	= '';	
	
	this.m_NavPath    = g_navNode_Path;

	EuropeaWebLogo.prototype.Display = EuropeaWebLogo_Display;

	if (strLogo != '')
		this.m_Logo = strLogo;

	if (strWidth != '')
		this.m_Width = strWidth;

	if (strHeight != '')
		this.m_Height = strHeight;
}

function EuropeaWebLogo_Display (node)	
{
	var ds = new Array();
	var di = 0;
	
	ds[di++] = '<a href="' + node.m_href + '">';
	ds[di++] = '<img border="0" class="logocabecera" src="' + this.m_Logo + '"'
	
	if (this.m_Width != '')
		ds[di++] = ' width="' + this.m_Width + '"';
		
	if (this.m_Height != '')
		ds[di++] = ' height="' + this.m_Height + '"';
		
	ds[di++] = '>';
	ds[di++] = '</a>';
	
	document.write(ds.join(''));
}

