var basePath = "http://www.windlines.net/weather/"
var pathToWdlconfig = basePath + "wdlconfig.xml";
var versionOfWdl = "wdlv5_01.swf";
var pathToWdl = basePath + versionOfWdl;
var widthOfWdl = "100%";
var heightOfWdl = "328";
var backgroundColourOfWdl = "#DDFFDD";	//"white";

var flashcontent = document.getElementById( "flashcontent" );
flashcontent.parentNode.style.padding = "2px";

var so = new SWFObject( pathToWdl + "?" + pathToWdlconfig, versionOfWdl, widthOfWdl, heightOfWdl, "8", backgroundColourOfWdl );

if( so.installedVer.versionIsValid(so.getAttribute("version")) )
{
    flashcontent.innerHTML = "";

    so.addParam( "quality", "high" );
    so.write( "flashcontent" );
}
else
{
    flashcontent.style.marginTop = "0px";
    flashcontent.innerHTML = "<iframe id=\"downLevelFrame\" src=\"http://www.windlines.net/weather/wx.php\" width=\"440px\" height=\"410px\" frameborder=\"0\" scrolling=\"no\"></iframe><br />For a better viewing experience, install the latest <a href=\"http://www.adobe.com/products/flashplayer/\">Adobe Flash Player</a>.";
}

