/* function for inserting flash content into the site (prevents click to activate) */

            function activateFlash(flashurl,width,height)
            {
                       
                                    document.write('<object type=\"application/x-shockwave-flash\" data=\"' + flashurl + '\" width=\"' + width + '\" height=\"' + height + '\">\n');
                                    document.write('<param name=\"movie\" value=\"' + flashurl + '\" />\n');
                                    document.write('<param name=\"bgcolor\" value=\"#fff\" />\n');
                                    document.write('<param name=\"quality\" value=\"high\" />\n');
                                    document.write('<param name=\"salign\" value=\"lt\" />');
                                    document.write('<param name=\"wmode\" value=\"transparent\" />\n');
                                     

        	 }