//For www.bizopzine.com

var video=new iSpeakVideo();
if (mini == undefined) var mini = false;
if (fixed == undefined) var fixed = true;

if (mini)
{
    video.src = 'https://secure.trust-guard.com/seals/videos/security-mini.swf';        
    video.height=184;
    video.width=122; 
}
else
{
    video.src = 'https://secure.trust-guard.com/seals/videos/security-large.swf';
    video.height=320;
    video.width=200;    
}

if (fixed)
{
    if (typeof y != 'undefined')
    {
        video.positionFrom='fromBottom';
        video.positionHorizontalFrom=align;
        video.Location.X = x - 15; //65;

        if (video.isIE || video.isOpera || document.compatMode.indexOf('CSS') != -1)
            y -=  25;
        else
            y += 17;

        video.Location.Y = y;
    }
    else
    {
        video.ReferenceID = 'video-seal';
    }
    video.Intialize();
}
else
{
    video.WriteMovieObject();
}

function hideWhenFinished()
{
    video.HideWhenFinished();
}


