I am using IE8 as defaut browser and since few days I am unable to view the homepage of armorgames. I accessed to the site with Mozilla/Firefox and all is working fine. After some investigation, I found the reason of the bug. The home page contain the following source code :
<!--JavaScript Tag // Tag for network 5205: Intergi // Website: Armor Games Inc // Page: armogames.game // Placement: Game Button Tracker (2158567) // created at: Nov 2, 2011 257 PM--> <script language="javascript" defer="defer"><!-- document.write('<scr'+'ipt language="javascript1.1" src="http://ads.intergi.com/addyn/3.0/5205/2158567/0/16/ADTECH;loc=100;target=_blank;key=key1+key2+key3+key4;grp=[group];misc='+new Date().getTime()+'"></scri'+'t>'; //--> </script><noscript><a href="http://ads.intergi.com/adlink/3.0/5205/2158567/0/16/ADTECH;loc=300;key=key1+key2+key3+key4;grp=[group]" target="_blank"><img src="http://ads.intergi.com/adserv/3.0/5205/2158567/0/16/ADTECH;loc=300;key=key1+key2+key3+key4;grp=[group]" border="0" width="1" height="1"></a></noscript> <!-- End of JavaScript Tag -->
In bold, you can see that the "defer" tag is set. Because of this flag, IE8 browser is running this script after rendering the page's body and therefore the document.write call is overwritting the whole page, preventing any access to the home page of armorgames.
As far as I know from javascript, the defer flag should not be set for scripts that use document.write calls, because it might screw up in some browsers.
Hope that someone will fiw this issue and that my explanations will help.
Yes I could do this at home ^_^ Unfortunatly, I am not authorized to install Firefox at work therefore I won't be able to access the site from work (don't ask me why I'm going to armorgames during work-time :P )