﻿function embedVideo(embedUrl) 
{
    document.write('<div style="z-index: 0;">');
    document.write('<iframe width="410" height="255" src="' + embedUrl + '?wmode=opaque" frameborder="0" allowfullscreen></iframe>');
    document.write('</div>');
}

function embedVideoSized(embedUrl, width, height) {
    document.write('<div style="z-index: 0;">');
    document.write('<iframe width="' + width + '" height="' + height + '" src="' + embedUrl + '?wmode=opaque" frameborder="0" allowfullscreen></iframe>');
    document.write('</div>');
}

function embedVideoLegacy(url) 
{
    document.write('<div style="z-index: 0;">');
    document.write('<object width="410" height="255">');
    document.write('<param name="movie" value="' + url + '"></param>');
    document.write('<param name="allowFullScreen" value="true"></param>');
    document.write('<param name="allowscriptaccess" value="always"></param>');
    document.write('<param name="wmode" value="opaque" />');
    document.write('<embed src="' + url + '" type="application/x-shockwave-flash" width="410" height="255" allowscriptaccess="always" allowfullscreen="true" wmode="opaque">');
    document.write('</embed> ');
    document.write('</object>');
    document.write('</div>');
}
