I assume this:
Code:
barText="SIDE MENU"; // <IMG> tag supported. Put exact html for an image to show.
is what you are referring to. Common sense would tell you the image cannot be too big, too wide or too tall. Uncommon sense, er some knowledge of JavaScript would tell you that this is a double quote delimited string:and can be replaced with HTML code. The beginning and ending quotes must remain and any double quotes contained in the HTML code you put in there must be escaped. Example:
Code:
barText="<img src=\"some.gif\" width=\"10\" height=\"60\">"; // <IMG> tag supported. Put exact html for an image to show.
Bookmarks