
// JScript File

function WriteHomePageFlash(flashURL)
{
    //document.writeln("<embed pluginspage=\"http://www.macromedia.com/go/getflashplayer\" align=\"bottom\" src=\"/ccintellect/media/flash/home.swf\" type=\"application/x-shockwave-flash\" bgcolor=\"\" salign=\"LT\" quality=\"high\" menu=\"false\" loop=\"false\">");

    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=\"792\" height=\"246\" id=\"home\" align=\"middle\">");
    document.writeln("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
    document.writeln("<param name=\"movie\" value=\""+flashURL+"\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");
    document.writeln("<param name=\"bgcolor\" value=\"#ffffff\" />");
    document.writeln("<embed src=\""+flashURL+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\"792\" height=\"246\" name=\"home\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
    document.writeln("</object>");

}


function WriteHomeIntroFlash()
{
    //document.writeln("<embed pluginspage=\"http://www.macromedia.com/go/getflashplayer\" align=\"bottom\" src=\"/ccintellect/media/flash/home.swf\" type=\"application/x-shockwave-flash\" bgcolor=\"\" salign=\"LT\" quality=\"high\" menu=\"false\" loop=\"false\">");
    var flashURL = "/norwood/media/Flash/norwood_intro.swf";
    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=\"793\" height=\"537\" id=\"home\" align=\"middle\">");
    document.writeln("<param name=\"allowScriptAccess\" value=\"sameDomain\" />");
    document.writeln("<param name=\"movie\" value=\""+flashURL+"\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");
    document.writeln("<param name=\"bgcolor\" value=\"#ffffff\" />");
    document.writeln("<embed src=\""+flashURL+"\" quality=\"high\" bgcolor=\"#ffffff\" width=\"793\" height=\"537\" name=\"home\" align=\"middle\" allowScriptAccess=\"sameDomain\" type=\"application/x-shockwave-flash\" pluginspage=\"http://www.macromedia.com/go/getflashplayer\" />");
    document.writeln("</object>");

}

function WritePortfolioFlash(xmlpath)
{
    var url_pieces = window.location.href.split("/");
    var thisURL = "/"+url_pieces[url_pieces.length-1];
    
    var portfolio_width = 174;
    var portfolio_height = 335;
    var portfolio_bg = "#E9E9E9";
    
    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=\"/norwood/media/flash/portfolio.swf?xmlpath="+xmlpath);
    if(thisURL != undefined && thisURL.length > 0) document.writeln("&thisURL="+thisURL);
    document.writeln("\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");
    document.writeln("<param name=\"bgcolor\" value=\""+portfolio_bg+"\" />");
    document.writeln("<embed src=\"/norwood/media/flash/portfolio.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>");
}

function WriteCaseStudyFlash(xmlpath)
{
    var portfolio_width = 210;
    var portfolio_height = 315;
    var portfolio_bg = "#E9E9E9";
    xmlpath = ""+xmlpath;
    
    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=\"/norwood/media/flash/casestudies.swf?xmlpath="+xmlpath);
    document.writeln("\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");
    document.writeln("<param name=\"bgcolor\" value=\""+portfolio_bg+"\" />");
    document.writeln("<embed src=\"/norwood/media/flash/casestudies.swf?xmlpath="+xmlpath);
    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>");
}