
// JScript File

function WriteMapFlash()
{
    var url_pieces = window.location.href.split("/");
    var thisURL = "/"+url_pieces[url_pieces.length-1];
    
    var portfolio_width = 680; //530;
    var portfolio_height = 480; //375;
    var portfolio_bg = "#E9E9E9";
    var xmlpath = "/Constellation/xml_datamanager.aspx%3Fdatamanager=MapData";
    
    document.writeln("<div style='margin-left:-10;'>");
    document.writeln("<object classid=\"clsid:d27cdb6e-ae6d-11cf-96b8-444553540000\" codebase=\"http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0\" width=\""+portfolio_width+"\" height=\""+portfolio_height+"\" id=\"home\" align=\"middle\">");
    document.writeln("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
    document.writeln("<param name=\"movie\" value=\"/TREO/media/flash/maps.swf?verion=1&xmlpath="+xmlpath);
    document.writeln("\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");
    document.writeln("<param name=\"bgcolor\" value=\""+portfolio_bg+"\" />");
    document.writeln("<embed src=\"/TREO/media/flash/maps.swf?xmlpath="+xmlpath);
    if(thisURL != undefined && thisURL.length > 0) document.writeln("&thisURL="+thisURL);
    document.writeln("\" quality=\"high\" bgcolor=\""+portfolio_bg+"\" width=\""+portfolio_width+"\" height=\""+portfolio_height+"\" name=\"portfolio\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
    document.writeln("</object>");
    document.writeln("</div");
}