   // JavaScript Document

//active content preparation for browser changes...
//replace tag for active content with a script that calls code outside of your HTML page

//more information here...http://www.adobe.com/devnet/activecontent/articles/devletter.html


//this function will write the code for the object/applet/embed tag in the html file
function RunFlashIntro()
{                    
    document.write('<object type="application/x-shockwave-flash" data="http://www.thehubhornby.co.nz/files/flash/map_flash.swf" width="599" height="645">\n');
        document.write('<param name="movie" value="http://www.thehubhornby.co.nz/files/flash/map_flash.swf" />\n');
        document.write('<param name="bgcolor" value="#000000" />\n');
        document.write('<param name="menu" value="false" />\n');
    document.write('</object>\n');
} 
