function importflash(f, w, h) {
   document.write('<object type="application/x-shockwave-flash" data="/_flash/' + f + '.swf" width="' + w + '" height="' + h + '">\n');
   document.write('<param name="allowScriptAccess" value="sameDomain" />\n');
   document.write('<param name="movie" value="/_flash/' + f + '.swf" />\n');
   document.write('<param name="quality" value="high" />\n');
   document.write('<param name="menu" value="false" />\n');
   document.write('<param name="wmode" value="transparent" />\n');
   document.write('</object>\n');
}

function addfav() {
    // If the browser is Internet Explorer
    var url = location.href;
    var title = 'Tourism Development Council website for Franklin County Florida! Apalachicola, St. George Island, Eastpoint, Carrabelle, Lanark, Alligator Point'
    if (document.all) {
            // Add to Favorites (Internet Explorer)
            window.external.AddFavorite(url,title);
        }
    else {
        // Add to Bookmarks (Mozilla Firefox)
        window.sidebar.addPanel(title, url, '');
        }
}