function AddImage( eParent, sSrc, iWidth, iHeight )
{	
	if( !eParent ) return false;
	try
	{	
		var eLogo = document.createElement( "img" );
		if( !eLogo ) return false;
		eLogo.setAttribute( "src", sSrc );
		eLogo.setAttribute( "width", iWidth );
		eLogo.setAttribute( "height", iHeight );
		eLogo.setAttribute( "border", "0" );
		eParent.appendChild( eLogo );
	}
	catch (err) 
	{ 
		return false; 
	}
	return true;
}