// Flash object for Home.aspx
function flashHome(moviePath, width, height) {
    document.writeln("<object type=\"application/x-shockwave-flash\" data=\"" + moviePath + "\" width=\"" + width + "\" height=\"" + height + "\">");
    document.writeln("<param name=\"movie\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"src\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"loop\" value=\"true\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");         
    document.writeln("<param name=\"bgcolor\" value=\"#000000\" />");                       
    document.writeln("<param name=\"WMode\" value=\"Transparent\" />");                       
    document.writeln("</object>");
}

// Left flash object for Default.aspx
function flashDefaultSport(moviePath, width, height) {
    document.writeln("<object class=\"flash\" type=\"application/x-shockwave-flash\" data=\"" + moviePath + "\" width=\"" + width + "\" height=\"" + height + 
        "\"  onclick=\"document.location.href='Home.aspx'\" onmouseover=\"hoverOn('rehbandSport');\" onmouseout=\"hoverOff('rehbandSport');\">");
    document.writeln("<param name=\"movie\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"src\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"loop\" value=\"true\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");         
    document.writeln("<param name=\"bgcolor\" value=\"#cccccc\" />");                       
    document.writeln("<param name=\"WMode\" value=\"Transparent\" />");                     
    document.writeln("</object>");
}

// Right flash object for Default.aspx
function flashDefaultMedical(moviePath, width, height) {
    document.writeln("<object class=\"flash\" type=\"application/x-shockwave-flash\" data=\"" + moviePath + "\" width=\"" + width + "\" height=\"" + height + 
        "\" onclick=\"document.location.href='http://www.rehband.se'\" onmouseover=\"hoverOn('rehbandMedical');\" onmouseout=\"hoverOff('rehbandMedical');\">");
    document.writeln("<param name=\"movie\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"src\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"loop\" value=\"true\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");         
    document.writeln("<param name=\"bgcolor\" value=\"#cccccc\" />");                       
    document.writeln("<param name=\"WMode\" value=\"Transparent\" />");                       
    document.writeln("</object>");
}

// Flash object for About.aspx
function flashAboutUs(moviePath, width, height) {
    document.writeln("<object type=\"application/x-shockwave-flash\" data=\"" + moviePath + "\" width=\"" + width + "\" height=\"" + height + "\">");
    document.writeln("<param name=\"movie\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"src\" value=\"" + moviePath + "\" />");
    document.writeln("<param name=\"loop\" value=\"true\" />");
    document.writeln("<param name=\"quality\" value=\"high\" />");         
    document.writeln("<param name=\"bgcolor\" value=\"White\" />");                       
    document.writeln("<param name=\"WMode\" value=\"Transparent\" />");                       
    document.writeln("</object>");
}