﻿//Embed objects scripts
//Required to circumvent the stupid EOLAS patent
function EmbedSWFObject(filePath)
{
    
    document.write("<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"540\" height=\"400\">" +
                    "<param name=\"movie\" value=\"" + filePath + "\" />" +
                    "<param name=\"quality\" value=\"high\" /><param name=\"LOOP\" value=\"false\" />" +
                    "<embed src=\"" + filePath + "\" width=\"100%\" height=\"100%\" hspace=\"10\" loop=\"false\" quality=\"high\" pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\">" +
                    "</embed></object>");
}

function EmbedAVIObject(filePath, width, height)
{
    document.write('<embed src=\"' + filePath + '\" width=\"' + width + 'px\" height=\"' + height + 'px\" align=\"center\">' +
                    '<noembed>Unfortunatly you do not have the required software installed to view this video. Please download Microsoft Windows Media Player from <a href=\"http://www.microsoft.com/windows/windowsmedia/mp10\">here</a> and try again.</noembed>');
}