i think its an excellent idea
however i did make one alteration i decided to show it only to guests using IE so that it does its original purpose however it doesn't inconvience my members
change
Code:
<!-- Pimp Firefox Message -->
<if condition="is_browser(ie)">
<td class="alt1" colspan="6"><a href="http://www.spreadfirefox.com/?q=affiliates&id=0&t=54"><img border="0" alt="Get Firefox!" title="Get Firefox!" src="http://sfx-images.mozilla.org/affiliates/Banners/468x60/trust.png"/></a>
<b>You are using Internet Explorer, which is a security risk.</b>
<p>We are trying to discourage people from using IE, as it contains many security flaws and other problems. This is confirmed by The Department of Homeland Security in the USA.
If you want to view this page without this popup appearing, please <u>login</u> or download one of these excellent alternative browsers:</p>
<ul>
<li><a href="http://www.mozilla.com/products/firefox">Mozilla Firefox</a></li>
<li><a href="http://www.opera.com">Opera</a></li>
<li><a href="http://www.mozilla.com">Mozilla</a></li>
<li><a href="http://www.netscape.com">Netscape</a></li></ul>
<p>Click on any of the browser names to see more information about them on their websites. We apologise for any inconvenience, and hope that you return with a different browser soon.</p>
</td>
</tr>
</if>
<if condition="is_browser(ie) OR $show[guest]">
</thead>
</table>
</if>
<!-- / Pimp Firefox Message -->
to
Code:
<!-- Pimp Firefox Message -->
<if condition="is_browser(ie) AND $show['guest']">
<td class="alt1" colspan="6"><a href="http://www.spreadfirefox.com/?q=affiliates&id=0&t=54"><img border="0" alt="Get Firefox!" title="Get Firefox!" src="http://sfx-images.mozilla.org/affiliates/Banners/468x60/trust.png"/></a>
<b>You are using Internet Explorer, which is a security risk.</b>
<p>We are trying to discourage people from using IE, as it contains many security flaws and other problems. This is confirmed by The Department of Homeland Security in the USA.
If you want to view this page without this popup appearing, please <u>login</u> or download one of these excellent alternative browsers:</p>
<ul>
<li><a href="http://www.mozilla.com/products/firefox">Mozilla Firefox</a></li>
<li><a href="http://www.opera.com">Opera</a></li>
<li><a href="http://www.mozilla.com">Mozilla</a></li>
<li><a href="http://www.netscape.com">Netscape</a></li></ul>
<p>Click on any of the browser names to see more information about them on their websites. We apologise for any inconvenience, and hope that you return with a different browser soon.</p>
</td>
</tr>
</if>
<if condition="is_browser(ie) OR $show[guest]">
</thead>
</table>
</if>
<!-- / Pimp Firefox Message -->