<%-- Copyright (c) 2000, 2005 IBM Corporation and others. All rights reserved. This program and the accompanying materials are made available under the terms of the Eclipse Public License v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html Contributors: IBM Corporation - initial API and implementation --%> <%@ include file="header.jsp"%> <% RequestData data = new RequestData(application,request, response); WebappPreferences prefs = data.getPrefs(); String forwardImage, backImage, homeImage; if(isRTL) { forwardImage = "back.gif"; backImage = "forward.gif"; } else { forwardImage = "forward.gif"; backImage = "back.gif"; } homeImage = "home.gif"; String homeURL = UrlUtil.getHelpURL(prefs.getHelpHome()); boolean isBookmarkAction = prefs.isBookmarksView() || prefs.isBookmarksAction() && data.isIE() && !data.isOpera(); // for infocenter, add to favorites supported on IE String bookmarkButtonState = isBookmarkAction?"off":"hidden"; String bookmarkAction = RequestData.MODE_INFOCENTER==data.getMode()?"bookmarkInfocenterPage":"bookmarkPage"; %>