I implemented SWFObject to website but now the pop-up do not work and nothing happens when clicking on the buttons. It worked all fine before adding SWFObject on all browsers but now nothing. any ideas how i can fix this?
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Online Portfolio</title> <script type="text/javascript" src="swfobject.js"></script> </head> <body bgcolor="#003300"> <!--url's used in the movie--> <!--text used in the movie--> <!-- saved from url=(0013)about:internet --> <center> <div id="flashcontent">Please download the latest Flash player</div> <script type="text/javascript"> var so = new SWFObject("portfolio.swf", "portfolio", "800", "600", "8"); so.addParam("quality", "high"); so.write("flashcontent"); </script> </center> </body> </html>