Home2.script 546 B

12345678910111213141516171819202122232425
  1. <?xml version="1.0"?>
  2. <!DOCTYPE script PUBLIC
  3. "-//Apache Software Foundation//Tapestry Script Specification 3.0//EN"
  4. "http://jakarta.apache.org/tapestry/dtd/Script_3_0.dtd">
  5. <script>
  6. <body>
  7. <unique>
  8. <![CDATA[
  9. (function(){
  10. /*Use Object Detection to detect IE6*/
  11. var m = document.uniqueID /*IE*/
  12. && document.compatMode /*>=IE6*/
  13. && !window.XMLHttpRequest /*<=IE6*/
  14. && document.execCommand ;
  15. try{
  16. if(!!m){
  17. m("BackgroundImageCache", false, true) /* = IE6 only */
  18. }
  19. }catch(oh){};
  20. })();
  21. ]]>
  22. </unique>
  23. </body>
  24. </script>