Hi,
sorry about not having searched the forum for this issue before posting.
i used the swfobject.js script on my site to check the client flash version. it took some time to notice that integrating this script causes IE6 to crash completly with a white page and an error box saying "operation aborded"
after some googling about this error i finaly found the solution here (see faq#4)
i made a change in the file header.php at line 68 changed from
| Code:: |
$header = '<base href="'.$BASEHREF.'" />'."\n"; |
to
| Code:: |
$header = '<base href="'.$BASEHREF.'" /><!--[if IE]></base><![endif]-->'."\n"; |
this solved the issue for me.