Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     Adding correct DOC TYPE to Dashboard's HTML

Read-Only Read-Only Topic
Go
Search
Notify
Tools
Adding correct DOC TYPE to Dashboard's HTML
 Login/Join
 
Member
posted
Hello,

The following is the HTML that is generated by WebFOCUS when a user logins to group view:

 
<HTML>
<HEAD>
<TITLE>WebFOCUS Business Intelligence Dashboard</TITLE>
<SCRIPT type="text/javascript">
	window.name="mainWindow";
</SCRIPT>
</HEAD>
<FRAMESET rows="*" cols="*" border="0">
<FRAMESET rows="105, *" cols="*" border="0">
<FRAME src="/ibi_apps/Controller?WORP_REQUEST_TYPE=worp_get_banner&BANNER_LINK=HELP,LOGOFF&" name="banner" title="Banner Frame" scrolling="no" FRAMEBORDER="0">
<FRAMESET rows="20, *" cols="*" border="0">
<FRAME src="/ibi_apps/Controller?WORP_REQUEST_TYPE=SHOW_TOOLBAR&TOOLBAR_NAME=ibitoolbar&TOOLBAR_TYPE=hor&" name="ibitoolbar" title="Toolbar Frame" scrolling="no" FRAMEBORDER="0">
<FRAME src="/ibi_apps/Controller?WORP_REQUEST_TYPE=SHOW_CONTENT&" name="contentFrame" title="Content Frame" scrolling="no" FRAMEBORDER="0">
</FRAMESET>
</FRAMESET>
</FRAMESET>
</HTML>


I want to add DOCTYPE and meta for IE=Edge, so the HTML would look like:
<!DOCTYPE html>
<HTML>
<HEAD>
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<TITLE>WebFOCUS Business Intelligence Dashboard</TITLE>
<SCRIPT type="text/javascript">
	window.name="mainWindow";
</SCRIPT>
</HEAD>
<FRAMESET rows="*" cols="*" border="0">
<FRAMESET rows="105, *" cols="*" border="0">
<FRAME src="/ibi_apps/Controller?WORP_REQUEST_TYPE=worp_get_banner&BANNER_LINK=HELP,LOGOFF&" name="banner" title="Banner Frame" scrolling="no" FRAMEBORDER="0">
<FRAMESET rows="20, *" cols="*" border="0">
<FRAME src="/ibi_apps/Controller?WORP_REQUEST_TYPE=SHOW_TOOLBAR&TOOLBAR_NAME=ibitoolbar&TOOLBAR_TYPE=hor&" name="ibitoolbar" title="Toolbar Frame" scrolling="no" FRAMEBORDER="0">
<FRAME src="/ibi_apps/Controller?WORP_REQUEST_TYPE=SHOW_CONTENT&" name="contentFrame" title="Content Frame" scrolling="no" FRAMEBORDER="0">
</FRAMESET>
</FRAMESET>
</FRAMESET>
</HTML>


Is there anyway this can be done? Any JSP to edit? Thanks


------------------------------
WebFOCUS 8.2.x, InfoAssist, MRE/Dashboard, ReportCaster, Active Reports, jQuery, Highcharts, FusionCharts
Platform: Windows, AIX
 
Posts: 11 | Location: Texas, USA | Registered: November 06, 2007Report This Post
Platinum Member
posted Hide Post
You should be able to add it but since it will be in the core code you will have to insure that you document it so that you can repeat the modification each time you upgrade. Someone here may know the precise file to modify but I would suggest you open a case so that you can get exact instructions for your version of WF.


WF 7.7.04, WF 8.0.7, Win7, Win8, Linux, UNIX, Excel, PDF
 
Posts: 175 | Location: Pomona, NY | Registered: August 06, 2003Report This Post
Member
posted Hide Post
I found it. It is created by the following file:
ibi\WebFOCUS77\webapps\webfocus\worp\jsp\layout\WORP_Layout.jsp
I shall modify it later in the week on our sandbox and post my results back here.


------------------------------
WebFOCUS 8.2.x, InfoAssist, MRE/Dashboard, ReportCaster, Active Reports, jQuery, Highcharts, FusionCharts
Platform: Windows, AIX
 
Posts: 11 | Location: Texas, USA | Registered: November 06, 2007Report This Post
Member
posted Hide Post
Edited ibi\WebFOCUS77\webapps\webfocus\worp\jsp\layout\WORP_Layout.jsp file to include the following (just before the tag):<BR><BR><pre class="ip-ubbcode-code-pre"> <% String paramValue = request.getParameter("WORP_MPV"); %> <% if ("aa_gbv".equalsIgnoreCase(paramValue) || "ab_gbv".equalsIgnoreCase(paramValue) ) { %> <!DOCTYPE html> <HTML> <HEAD> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <%} else {%> <HTML> <HEAD> <%}%> </pre><BR><BR>In the above code, the DOC TYPE is set only for aa_gbv and ab_gbv, for other views IBI default setting is used. I understand that this file might need to be replaced when we apply any hotfixes/upgrades (version 8 is years away for us). Any other disadvantages/thoughts on using this approach? Thanks!<div class="ev_tpc_signature"><br/><br/>------------------------------<BR>WebFOCUS 8.2.x, InfoAssist, MRE/Dashboard, ReportCaster, Active Reports, jQuery, Highcharts, FusionCharts<BR>Platform: Windows, AIX </div></div></td></tr><tr><td> </td><td><table class="ev_msg_userstats_table" cellspacing="0"><tr><td width="80%"><a href="https://forums.informationbuilders.com/eve/forums?a=userposts&sortType=1&u=6431040652" rel="nofollow">Posts: <b>11</b></a> | Location: <b>Texas, USA</b> | Registered: <b>November 06, 2007</b></td><td class="ev_msg_buttons"><a class="gs_user_not_logged_in" href="https://forums.informationbuilders.com/eve/forums?a=ma&m=8797086036&t=4107045036&f=7971057331"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_msg_alert" hspace="3" alt="Report This Post" title="Report This Post"></a><a class="ev_message_ip" style="display: none;" href="javascript:void(0);" onclick="window.open('https://forums.informationbuilders.com/eve/forums?a=message-ip-info&m=8797086036&f=7971057331&x_popup=Y','','width=700,height=400,toolbar=no, location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=yes, resizable=yes');return false;"> IP </a></td></tr></table></td></tr></table><table id="ignore_8797086036" class="ev_msg_rowcolor1" cellspacing="0" align="center" style="display:none; width:100%;"><tr><td class="ev_ignore_msg" colspan="2"><table cellspacing="0" cellpadding="0" width="100%"><tr><td class="ev_text_small"> Ignored post by <a onclick="window.activemenu=true;show_member_menu(this,'gs_user_contact_menu','webfocusguru','6431040652','');window.activemenu=false;event.cancelBubble=true" id="user_6431040652_i_msg_8797086036" class="ev_member_link" href="javascript:void(0)">webfocusguru</a> posted <script>document.write('<nobr>'+ myTimeZone('Wed, 08 May 2013 12:31:14 GMT-0700', 'May 08, 2013 03:31 PM')+'</nobr>');</script><noscript>May 08, 2013 03:31 PM</noscript></td><td class="ev_text_small" style="text-align:right;"><a href="javascript:void(0);" onClick="showElement('post_8797086036'); hideElement('ignore_8797086036');">Show Post</a></td></tr></table></td></tr></table><script type="text/javascript"> ignoreMessage('8797086036', '6431040652'); </script><table id="post_5507096036" class="ev_msg_rowcolor2" cellspacing="0" align="center" style="width:100%;"><tr><td class="ev_msg_userinfo"><a name="5507096036"></a><div class="ev_ubbx_tpc_author"><a onclick="window.activemenu=true;show_member_menu(this,'gs_user_contact_menu','webfocusguru','6431040652','');window.activemenu=false;event.cancelBubble=true" id="user_6431040652_msg_5507096036" class="ev_member_link" href="javascript:void(0)">webfocusguru</a></div><span class="ev_text_small">Member<br></span></td><td><table cellspacing="0" class="ev_msg_table"><tr><td class="ev_msg_posticon"><a href="https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4107045036?r=5507096036#5507096036" rel="nofollow"><img class="ubb_post_icon1" align="absbottom" src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif"></a></td> <td class="ev_msg_timestamp">posted <script>document.write('<nobr>'+ myTimeZone('Wed, 08 May 2013 12:54:05 GMT-0700', 'May 08, 2013 03:54 PM')+'</nobr>');</script><noscript>May 08, 2013 03:54 PM</noscript></td><td class="ev_msg_hide"><a href="javascript:void(0);" onClick="showElement('ignore_5507096036'); hideElement('post_5507096036');" class="hide-post"><nobr>Hide Post</nobr></a></td></tr></table><div class="ev_ubbx_tpc">Edited ibi\WebFOCUS77\webapps\webfocus\worp\jsp\layout\WORP_Layout.jsp file to include the following (just before the <TITLE> tag):<BR><pre class="ip-ubbcode-code-pre"> <% String paramValue = request.getParameter("WORP_MPV"); %> <% if ("aa_gbv".equalsIgnoreCase(paramValue) || "ab_gbv".equalsIgnoreCase(paramValue) ) { %> <!DOCTYPE html> <HTML> <HEAD> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <%} else {%> <HTML> <HEAD> <%}%> </pre><BR><BR>In the above code the DOC TYPE I wanted is applied only for aa_gbv and ab_gbv. I understand that when we upgrade/apply hotfixes I might need to add these lines again. Any other disadvantages/thoughts? Thanks!<div class="ev_tpc_signature"><br/><br/>------------------------------<BR>WebFOCUS 8.2.x, InfoAssist, MRE/Dashboard, ReportCaster, Active Reports, jQuery, Highcharts, FusionCharts<BR>Platform: Windows, AIX </div></div></td></tr><tr><td> </td><td><table class="ev_msg_userstats_table" cellspacing="0"><tr><td width="80%"><a href="https://forums.informationbuilders.com/eve/forums?a=userposts&sortType=1&u=6431040652" rel="nofollow">Posts: <b>11</b></a> | Location: <b>Texas, USA</b> | Registered: <b>November 06, 2007</b></td><td class="ev_msg_buttons"><a class="gs_user_not_logged_in" href="https://forums.informationbuilders.com/eve/forums?a=ma&m=5507096036&t=4107045036&f=7971057331"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_msg_alert" hspace="3" alt="Report This Post" title="Report This Post"></a><a class="ev_message_ip" style="display: none;" href="javascript:void(0);" onclick="window.open('https://forums.informationbuilders.com/eve/forums?a=message-ip-info&m=5507096036&f=7971057331&x_popup=Y','','width=700,height=400,toolbar=no, location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=yes, resizable=yes');return false;"> IP </a></td></tr></table></td></tr></table><table id="ignore_5507096036" class="ev_msg_rowcolor2" cellspacing="0" align="center" style="display:none; width:100%;"><tr><td class="ev_ignore_msg" colspan="2"><table cellspacing="0" cellpadding="0" width="100%"><tr><td class="ev_text_small"> Ignored post by <a onclick="window.activemenu=true;show_member_menu(this,'gs_user_contact_menu','webfocusguru','6431040652','');window.activemenu=false;event.cancelBubble=true" id="user_6431040652_i_msg_5507096036" class="ev_member_link" href="javascript:void(0)">webfocusguru</a> posted <script>document.write('<nobr>'+ myTimeZone('Wed, 08 May 2013 12:54:05 GMT-0700', 'May 08, 2013 03:54 PM')+'</nobr>');</script><noscript>May 08, 2013 03:54 PM</noscript></td><td class="ev_text_small" style="text-align:right;"><a href="javascript:void(0);" onClick="showElement('post_5507096036'); hideElement('ignore_5507096036');">Show Post</a></td></tr></table></td></tr></table><script type="text/javascript"> ignoreMessage('5507096036', '6431040652'); </script><table id="post_7607096036" class="ev_msg_rowcolor1" cellspacing="0" align="center" style="width:100%;"><tr><td class="ev_msg_userinfo"><a name="last_reply"></a><a name="7607096036"></a><div class="ev_ubbx_tpc_author"><a onclick="window.activemenu=true;show_member_menu(this,'gs_user_contact_menu','webfocusguru','6431040652','');window.activemenu=false;event.cancelBubble=true" id="user_6431040652_msg_7607096036" class="ev_member_link" href="javascript:void(0)">webfocusguru</a></div><span class="ev_text_small">Member<br></span></td><td><table cellspacing="0" class="ev_msg_table"><tr><td class="ev_msg_posticon"><a href="https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4107045036?r=7607096036#7607096036" rel="nofollow"><img class="ubb_post_icon1" align="absbottom" src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif"></a></td> <td class="ev_msg_timestamp">posted <script>document.write('<nobr>'+ myTimeZone('Wed, 08 May 2013 12:56:48 GMT-0700', 'May 08, 2013 03:56 PM')+'</nobr>');</script><noscript>May 08, 2013 03:56 PM</noscript></td><td class="ev_msg_hide"><a href="javascript:void(0);" onClick="showElement('ignore_7607096036'); hideElement('post_7607096036');" class="hide-post"><nobr>Hide Post</nobr></a></td></tr></table><div class="ev_ubbx_tpc"><BLOCKQUOTE class="ip-ubbcode-quote"><div class="ip-ubbcode-quote-title">quote:</div><div class="ip-ubbcode-quote-content">Originally posted by raj_t:<BR>I found it. It is created by the following file:<BR><B>ibi\WebFOCUS77\webapps\webfocus\worp\jsp\layout\WORP_Layout.jsp</B><BR>I shall modify it later in the week on our sandbox and post my results back here. </div></BLOCKQUOTE><BR><BR>Edited ibi\WebFOCUS77\webapps\webfocus\worp\jsp\layout\WORP_Layout.jsp file to include the following (just before the <TITLE> tag):<BR><pre class="ip-ubbcode-code-pre"> <% String paramValue = request.getParameter("WORP_MPV"); %> <% if ("aa_gbv".equalsIgnoreCase(paramValue) || "ab_gbv".equalsIgnoreCase(paramValue) ) { %> <!DOCTYPE html> <HTML> <HEAD> <meta http-equiv="X-UA-Compatible" content="IE=Edge"> <%} else {%> <HTML> <HEAD> <%}%> </pre><BR><BR>In the above code the DOC TYPE I wanted is applied only for aa_gbv and ab_gbv. I understand that when we upgrade/apply hotfixes I might need to add these lines again. Any other disadvantages/thoughts? Thanks!<div class="ev_tpc_signature"><br/><br/>------------------------------<BR>WebFOCUS 8.2.x, InfoAssist, MRE/Dashboard, ReportCaster, Active Reports, jQuery, Highcharts, FusionCharts<BR>Platform: Windows, AIX </div></div></td></tr><tr><td> </td><td><table class="ev_msg_userstats_table" cellspacing="0"><tr><td width="80%"><a href="https://forums.informationbuilders.com/eve/forums?a=userposts&sortType=1&u=6431040652" rel="nofollow">Posts: <b>11</b></a> | Location: <b>Texas, USA</b> | Registered: <b>November 06, 2007</b></td><td class="ev_msg_buttons"><a class="gs_user_not_logged_in" href="https://forums.informationbuilders.com/eve/forums?a=ma&m=7607096036&t=4107045036&f=7971057331"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_msg_alert" hspace="3" alt="Report This Post" title="Report This Post"></a><a class="ev_message_ip" style="display: none;" href="javascript:void(0);" onclick="window.open('https://forums.informationbuilders.com/eve/forums?a=message-ip-info&m=7607096036&f=7971057331&x_popup=Y','','width=700,height=400,toolbar=no, location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=yes, resizable=yes');return false;"> IP </a></td></tr></table></td></tr></table><table id="ignore_7607096036" class="ev_msg_rowcolor1" cellspacing="0" align="center" style="display:none; width:100%;"><tr><td class="ev_ignore_msg" colspan="2"><table cellspacing="0" cellpadding="0" width="100%"><tr><td class="ev_text_small"> Ignored post by <a onclick="window.activemenu=true;show_member_menu(this,'gs_user_contact_menu','webfocusguru','6431040652','');window.activemenu=false;event.cancelBubble=true" id="user_6431040652_i_msg_7607096036" class="ev_member_link" href="javascript:void(0)">webfocusguru</a> posted <script>document.write('<nobr>'+ myTimeZone('Wed, 08 May 2013 12:56:48 GMT-0700', 'May 08, 2013 03:56 PM')+'</nobr>');</script><noscript>May 08, 2013 03:56 PM</noscript></td><td class="ev_text_small" style="text-align:right;"><a href="javascript:void(0);" onClick="showElement('post_7607096036'); hideElement('ignore_7607096036');">Show Post</a></td></tr></table></td></tr></table><script type="text/javascript"> ignoreMessage('7607096036', '6431040652'); </script><table class="ev_container_bottom" cellspacing="0"><tr><td class="ev_bl_corner"> </td><td class="ev_container_left"> </td><td class="ev_poweredby" nowrap><a href="http://assets.socialstrata.com/landing/goto.php?a=eve" target="_blank">Powered by Social Strata</a></td><td class="ev_container_right_td"> </td><td class="ev_br_corner"> </td></tr></table><div id="eve_wait_message" style="position:absolute;top:55px;left:66px;z-index:75;visibility:hidden"><table align="center" cellpadding="5"><tr><td><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/loading.gif" width="40" height="36"></td><td style="font-family:verdana, arial;font-size:75%;border-left:1px solid #cccccc;"> Please Wait. Your request is being processed...</td></tr></table></div><span class="ev_background_txt"><br><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_lock" alt="Read-Only" title="Read-Only"> Read-Only Topic<br></span><br><div class="ev_background_txt" id="eve_bc_bottom"><a href="https://forums.informationbuilders.com">Focal Point</a>  <img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_ubbx_icon" align="absmiddle" alt="" title="">  <a href="https://forums.informationbuilders.com/eve/forums">Focal Point Forums</a>  <a onclick="setHoptoArray(window.site_oid);showHoptoMenu('gs_hoptohouse_bottom','all',0);event.cancelBubble=true" id="gs_hoptohouse_bottom" href="javascript:void(0);"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_bread_tier3" align="absmiddle" alt="Hop To Forum Categories" title="Hop To Forum Categories"></a>  <a href="https://forums.informationbuilders.com/eve/forums/a/frm/f/7971057331">WebFOCUS/FOCUS Forum on Focal Point </a>  <img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_bread_post" align="absmiddle" alt="" title="">  Adding correct DOC TYPE to Dashboard's HTML</div></div><br><div id="ev_contact_links" class="ev_background_txt"><a href="https://forums.informationbuilders.com" target="_top">Focal Point</a> | <a href="http://www.informationbuilders.com/privacy-policy">Privacy Statement</a> | <a href="javascript:void(0);" onclick="window.open('https://forums.informationbuilders.com/eve/tos','','width=400,height=425,toolbar=no, location=no,directories=no,status=yes,menubar=no,scrollbars=yes,copyhistory=yes, resizable=yes');">Terms of Service</a></div><div id="ev_copy_txt">Copyright © 1996-2020 Information Builders</div></div><div id="gs_user_contact_menu" onclick="exemptClearMenus(this.id)" style="position:absolute; top:50px; left:50px; visibility:hidden; width:250px;height:100px;"><table cellspacing="0" class="ev_layer_table"><tr><td class="ev_menu_img"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_profile" alt=""></td><td><a href="https://forums.informationbuilders.com/eve/personal?x_myspace_page=profile&u=$GS_USER_OID" target="_top"> View $GS_USERNAME's Public Profile</a></td></tr><tr class="gs_user_not_logged_in"><td class="ev_menu_img"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_ignore_list" alt=""></td><td><span id="ignore_$GS_USER_OID"><a href="javascript:void(0)" onclick="{sizePopup('conf', 'https://forums.informationbuilders.com/eve?a=ADD_MEMBERS_TO_IGNORE_LIST&MEMBER_OID_$GS_USER_OID=Y&x_popup=Y&x_simple=Y&x_popup_refresh_parent=Y','open');document.getElementById('gs_user_contact_menu').style.visibility='hidden'}">Add $GS_USERNAME to my Ignore List</a></span><span id="stop_ignore_$GS_USER_OID" style="display: none;"><a href="javascript:void(0)" onclick="{sizePopup('conf', 'https://forums.informationbuilders.com/eve?a=REMOVE_PERSONAL_GROUP_MEMBERS&GROUP_TYPE=IGNORED_USERS&MEMBER_OID_$GS_USER_OID=Y&x_popup=Y&x_simple=Y&x_popup_refresh_parent=Y','open');document.getElementById('gs_user_contact_menu').style.visibility='hidden'}">Remove $GS_USERNAME from my Ignore List</a></span></td></tr><tr><td class="ev_menu_img"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_user_posts_new" alt=""></td><td><a href="https://forums.informationbuilders.com/eve/forums?a=userposts&sortType=1&u=$GS_USER_OID" id="gs_user_contact_menu_name3" target="_top" rel="nofollow">View Recent Posts by $GS_USERNAME</a></td></tr><tr class="gs_user_not_logged_in"><td class="ev_menu_img"><img src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif" class="eve_notify" alt=""></td><td><a href="javascript:void(0);" id="gs_user_contact_menu_name4" onclick="window.open('https://forums.informationbuilders.com/eve?a=scfrm&type=M&content=$GS_USER_OID&smod=4651093421&x_popup=Y','','width=450,height=425,toolbar=no, location=no,directories=no,status=yes,menubar=no,scrollbars=no,copyhistory=yes, resizable=yes');">Notify me of New Posts by $GS_USERNAME</a></td></tr></table></div><form name="RATE_IT" id="ratingFormId" action="https://forums.informationbuilders.com/eve/forums?a=ratetopic&m=4107045036" method="POST"><input type="hidden" name="ratingval" value="" id="ratingValueId"></form><div id="gs_quick_reply" style="position:absolute; top:20px; left:20px; visibility:hidden; width:525px; height:300px; z-index:85;"><form action="https://forums.informationbuilders.com/eve/forums?UPDATE_MESSAGE=Y&t=4107045036&f=7971057331" method="post" name="REPLIER" onsubmit="return true;"><input type="hidden" name="IS_EXISTING_MESSAGE" value="N"><input type="hidden" name="POST_TYPE" value="PTYP_MSG"><input type="hidden" name="f" value="7971057331"><input type="hidden" name="TOPIC_MESSAGE_OID" value="4107045036"><input type="hidden" name="TOPIC_MESSAGE_OID_BAK" value="4107045036"><input type="hidden" name="USE_USER_PREF_SUBSCRIPTIONS" value="Y"><input type="hidden" name="POSTING_FORM_ID" value="1942558"><input type="hidden" name="POSTING_FORM_HASH" value="B3F585350A89BB7A395C26ED92CCB530"><input type="hidden" name="USE_USER_PREF_SIGNATURE" value="Y"><input type="hidden" name="ON_COMPLETE_REDIRECT_URL" value="https://forums.informationbuilders.com/eve/forums/a/tpc/f/7971057331/m/4107045036"><table align="center" class="ev_message_alert" cellspacing="0"><tr onMouseDown="storeQuickReplyPos();startDrag(event,'gs_quick_reply')"><td class="ev_grab_bar" colspan="2"><div style="float:right; padding: 0px 4px;text-align:right"><input onclick="document.getElementById('gs_quick_reply').style.visibility='hidden';showQuickReply.visible=false" class="ev_input_normal" type="button" value=" X "></div><span id="gs_quick_reply_replyto"> Quick Reply to: Adding correct DOC TYPE to Dashboard's HTML</span><span id="gs_quick_reply_subject" style="display:none"><input class="ev_input_normal" title="Subject" maxlength="85" name="SUBJECT" value=""></span></td></tr><tr id="ev_quick_reply_guest_name" style="display:none"><td colspan="2" class="ev_content"><span class="ev_text_normal"><b>Guest Name</b>  <input maxlength="40" name="GUEST_NAME" size="13" value=""></span></td></tr><tr><td colspan="2" class="ev_content"><textarea name="MESSAGE_BODY" id="gs_req_field_message" class="ev_q_msg" cols="64" rows="13" tabindex="1" style="z-index:999"></textarea></td></tr><tr><td class="ev_content" align="left"><span class="ev_text_small"><a href="javascript:void(0);" onclick="changeObjectVisibility('gs_quick_reply', 'hidden');">Close</a>  |  <a href="javascript:void(0);" class="gs_reply_wquote" onmousedown="quickQuote()">Quick Quote</a></span></td><td class="ev_content" align="right"><input class="ev_input_normal" type="submit" name="UPDATE_MESSAGE" value="Post Now" tabindex="2"></td></tr></table></form></div><script id="gs_quick_reply_js" type="text/javascript"><!-- quickReplyObj = document.getElementById('gs_quick_reply'); function showQuickReply() { if(showQuickReply.disabled){alert('You are not logged in.');return}; if(showQuickReply.lacksPermission){alert('You are not permitted to reply.');return}; positionDiv('gs_quick_reply','center','middle',500,265); if(document.REPLIER){document.REPLIER.MESSAGE_BODY.focus()}; showQuickReply.visible = true; showQuickReply.scrollPosY = parseInt(document.body.scrollTop); showQuickReply.divPosY = parseInt(quickReplyObj.style.top); }// end fn function storeQuickReplyPos() { showQuickReply.scrollPosY = parseInt(document.body.scrollTop); showQuickReply.divPosY = parseInt(quickReplyObj.style.top); }// function moveQuickReply() { if (showQuickReply.visible) { quickReplyObj.style.top = showQuickReply.divPosY + (document.body.scrollTop - showQuickReply.scrollPosY) + 'px'; } else { return; } }// end fn function quickQuote(qqType) { var quote; if(window.getSelection && window.getSelection().toString()){ quote = getSelection(); } else if(document.selection && document.selection.createRange().text){ quote = document.selection.createRange().text; } else { quote = false; } if(quote && document.REPLIER){ quote = quote.toString(); stripquote = quote.replace(/^\s*|\s*$/g,""); if (stripquote == "") { return; } else { document.REPLIER.MESSAGE_BODY.value += '[quote]' + stripquote + '[/quote]' + '\n'; } if(qqType=='fullreply'){sendFormValue();}; } }//end fn function sendFormValue(){ // this populates the popup window reply form with values from popupWindowReplyText = setInterval('if (childWin && childWin.document.REPLIER && childWin.document.REPLIER.MESSAGE_BODY){populateFormValue()}',1000); }//end fn function populateFormValue() { clearInterval(popupWindowReplyText); window.childWin.document.REPLIER.MESSAGE_BODY.value=window.document.REPLIER.MESSAGE_BODY.value; if (window.childWin.document.REPLIER.SUBJECT) childWin.document.REPLIER.SUBJECT.value=window.document.REPLIER.SUBJECT.value; }// end fn var isTopicLeadEnabled=false; var reply_url = 'https://forums.informationbuilders.com/eve/forums?a=prply&x_popup=Y&f=7971057331&m=4107045036'; var new_topic_url = 'https://forums.informationbuilders.com/eve/forums?a=ptpc&f=7971057331'; var reply_url_popup = reply_url + '&x_popup=Y'; var new_topic_url_popup = new_topic_url + '&x_popup=Y'; showQuickReply.formtype = 'reply'; // default showQuickReply.formurl = reply_url_popup; // default if((window.posting)&&(posting.fullPagePosting==true)&&(window.initFullPagePosting)){initFullPagePosting()};// TBA option to allow user choice of full page post forms --></script><div id="gs_msg_dynamic" style="position:absolute; left:400px; top:100px; visibility:hidden; width:250px;height:250px;" onClick="event.cancelBubble=true"><table class="ev_message_alert" width="100%" align="center" cellpadding="2" cellspacing="0"><tr onmousedown="startDrag(event,'gs_msg_dynamic')" style="cursor:pointer;"><td align="right" class="ev_grab_bar" style="padding-right:5px;"><input onclick="document.getElementById('gs_msg_dynamic').style.visibility='hidden'" class="ev_input_normal" type="button" value=" X "></td></tr><tr><td style="font-size:83%" class="ev_content" id="gs_msg_dynamic_content"><br><br></td></tr></table></div><div id="gs_hopto_menu" style="position:absolute; left:200px; top:200px;visibility:hidden; height:100px; z-index:5" onclick="exemptClearMenus(this.id)"><table class="ev_hopto_table" cellspacing="0" id="hopto_table"><tbody></tbody></table></div><div id="hopto_images" style="position:absolute; top:40px; left:40px; visibility:hidden;"><img class="ubb_arr_up" src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif"><img class="ubb_arr_down" src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/platform_images/blank.gif"></div><script src="https://forums.informationbuilders.com/eve/a/pjs/1679929047.js"></script><div id="gs_global_menu" style="position:absolute; top:40px; left:40px; visibility:hidden;"><table border="0" class="ev_layer_table" cellpadding="0" cellspacing="0"><tr><td class="ev_layer_hopto_td" onmouseover="this.className='ev_layer_table_hover';" onmouseout="this.className='ev_layer_hopto_td'"><a title="View posts since your last visit" href="https://forums.informationbuilders.com/eve/forums?a=nslv" class="ev_text_containercolor" onclick="clearMenus();getObjById('gs_msg_dynamic_content').innerHTML = wait_message;positionDiv('gs_msg_dynamic','left','top',320,270,220,65);" rel="nofollow"> New Since your Last Visit</a></td></tr><tr><td class="ev_layer_hopto_td" onmouseover="this.className='ev_layer_table_hover';" onmouseout="this.className='ev_layer_hopto_td'"><a title="View active topics" href="https://forums.informationbuilders.com/eve/forums?a=tat" class="ev_text_containercolor" onclick="clearMenus();getObjById('gs_msg_dynamic_content').innerHTML = wait_message;positionDiv('gs_msg_dynamic','left','top',320,270,220,65);" rel="nofollow"> Active Topics</a></td></tr></table></div> <script id="ev_perms_lib" type="text/javascript" src="https://forums.informationbuilders.com/groupee_common/ver1.3.7.2147483647/jscript/eve_perms_lib.js"></script> <script id="ev_guest_perms" type="text/javascript" src="https://forums.informationbuilders.com/eve/a/permjs/u/guests/001606933210435.js"></script> <script type="text/javascript"> if (window.userIsLoggedIn && window.constructorFileLoaded) { document.write('<scri' + 'pt id="ev_allreg_perms" type="text/javascri' + 'pt" src="' + 'https://forums.informationbuilders.com/eve/a/permjs/u/regusers/001608585517769.js' + '"></scri' + 'pt>'); document.write('<scri' + 'pt src="' + 'https://forums.informationbuilders.com/eve'+ '/a/permjs/ddsd'+ eve_cookie.perms_datetime + '.js"></scri' + 'pt>'); } </script> <script type="text/javascript"> res_oid = new Object(); res_oid.eve = '2651093421'; if(hasPerm(res_oid.eve,eveadmin.superadmin)){ // master level override hasPerm.all_perms=true; } if (hasPerm(res_oid.eve, eveadmin.moduleadmin)){showElement('ev_display_admin','ev_cp_link','ev_onow_link','ev_manmems_link');}; if (hasPerm(res_oid.eve, eveadmin.cpa)){showElement('ev_display_admin','ev_cp_link')}; if (hasPerm(res_oid.eve, eveadmin.manmem)){showElement('ev_display_admin','ev_manmems_link');}; res_oid.ubbx ='4651093421'; res_oid.ubbx_forum ='7971057331'; if(hasPerm(res_oid.ubbx,ubbxadmin.moduleadmin)){ hasPerm.all_perms=true; // set override so that EVERY test returns true } if (hasPerm(res_oid.ubbx, ubbxadmin.cpa)){ showElement('ev_display_admin','ev_cp_link');}; // Page-specific permissions code for Topic and Photo Album pages if(hasPerm(res_oid.ubbx, ubbxadmin.manage_content) || hasPerm(res_oid.ubbx_forum, ubbxfrm.manage_content)){ showElement('ev_display_admin','ev_manage_topics', 'ev_manage_topic_content');if(window.hideEditLinks){hideEditLinks.manage_content=true;};}; if(!window.userIsLoggedIn){ if ((hasPerm(res_oid.ubbx,ubbxgen.reply))&&(hasPerm(res_oid.ubbx_forum, ubbxfrm.reply))){ // guest reply is allowed showElement('ev_quick_reply_guest_name'); } else if (window.showQuickReply) { // disable qr if login is required showQuickReply.disabled = true; } } else { if (res_oid.ubbx && (!hasPerm(res_oid.ubbx,ubbxgen.reply) || !hasPerm(res_oid.ubbx_forum, ubbxfrm.reply))) showQuickReply.lacksPermission = true; } page_permissions_loaded = true; showPmIndicator();// check for new PM </script> <script type="text/javascript"> if ((pref[eve_oid]) && (pref[eve_oid].hide_avatars_and_signatures_on_posts) && (pref[eve_oid].hide_avatars_and_signatures_on_posts == "Y")) { hideAvatarsAndSignaturesOnPosts(); } </script><script type="text/javascript"> if(window.hideEditLinks) { hideEditLinks(); } showIPLinks(); </script></body></html>