Hallo Leute.
Warum funktionieren meine Links nicht bei verschiedenen Standorten mit MSIE Browser? Liegt das daran, dass der User kein javascript aktiviert hat?
.htm
<tr>
<td><a onclick="plainWindow();return true;" name="triathlon" target="_blank"><u>Triathlon</u></td>
</tr>
.js
<!--
var plain_window;
whatbrowser();
function plainWindow()
{
if(ie)
{
plain_window = window.open("triathlon.htm","Triathlon","width=608,height=468,resizable=yes,toolbar=yes,status=yes");
}
if(ns)
{
plain_window = window.open("triathlon.htm","Triathlon","outerWidth=608,outerHeight=468,resizable=yes,toolbar=yes,status=yes");
}
}
function whatbrowser()
{
ns = (document.layers)?true:false;
ie = (document.all)?true:false;
}
//-->