/*--- Avanquest WebEasy External Script ---*/

/* -------------------------------------------- */
/* Embed Adobe Flash SWF File                   */
/* -------------------------------------------- */


function weAddFlash(url,dmx,dmy,ply,lop,qua,sca,mnu,bgc)
{
    document.write('<object type="application/x-shockwave-flash"');
    document.write(' data="'+url+'"');
    document.write(' width="'+dmx+'" height="'+dmy+'">');
    document.write('<param name="movie" value="'+url+'">');
    document.write('<param name="play" value="'+ply+'">');
    document.write('<param name="loop" value="'+lop+'">');
    document.write('<param name="quality" value="'+qua+'">');
    document.write('<param name="scale" value="'+sca+'">');
    document.write('<param name="menu" value="'+mnu+'">');
    document.write('<param name="bgcolor" value="'+bgc+'">');
    document.write('<embed pluginspage="http://www.macromedia.com/go/getflashplayer"');
    document.write(' type="application/x-shockwave-flash"');
    document.write(' src="'+url+'"');
    document.write(' width="'+dmx+'"');
    document.write(' height="'+dmy+'"');
    document.write(' play="'+ply+'"');
    document.write(' loop="'+lop+'"');	
    document.write(' quality="'+qua+'"');	
    document.write(' scale="'+sca+'"');	
    document.write(' menu="'+mnu+'"');	
    document.write(' bgcolor="'+bgc+'">');
    document.write('<a href="http://www.macromedia.com/downloads/" target="_blank">');
    document.write('Plugins not found,</a>&nbsp;<A href="'+url+'" target="_blank">try</a>');
    document.write('</embed>');
    document.writeln('</object>');
}


/* -------------------------------------------- */
/* Embed MS Windows Audio File                  */
/* -------------------------------------------- */

function weAddWindowsAudio(url,dmx,dmy,ply,lop,mnu,rmn,enb)
{
    if (IE)
    {
        document.writeln('<object classid="clsid:6bf52a52-394a-11d3-b153-00c04f79faa6"');
    }
    else
    {
        document.writeln('<object type="application/x-ms-wmp" data="' + url + '"');
    }
    document.writeln(
    ' width="' + dmx +'" height="' + dmy + '" standby="Loading Media...">' +
    '  <param name="URL" value="' + url + '">' +
    '  <param name="autoStart" value="' + ply + '">' +
    '  <param name="playCount" value="' + lop +'">' +
    '  <param name="uiMode" value="' + mnu + '">' +
    '  <param name="enableContextMenu" value="' + rmn + '">' +
    '  <param name="enabled" value="' + enb + '">' +
    '  Windows Media Player 9 (or above) is required to play this clip.' +
    '  It can be downloaded from' +
    '  <a href="http://www.microsoft.com/windows/windowsmedia/9series/player.aspx">' +
    '  the Microsoft website</a>.' +
    '</object>');
}


/* -------------------------------------------- */
/* Flash Video Player                           */
/* Used with permission -  Jeroen Wijering (c)  */
/* License is required for commercial websites  */
/* for more information: www.jeroenwijering.com */
/* -------------------------------------------- */

function weAddFlashVideo(url,dmx,dmy,ply,lop,mnu,img,fgc,bgc,hlc)
{
    var vid='flvplayer.swf';
    vid += '?file='           +url;
    vid += '&autostart='      +ply;
    vid += '&repeat='         +lop;
    vid += '&shownavigation=' +mnu;
    vid += '&image='          +img;
    vid += '&frontcolor='     +fgc;
    vid += '&backcolor='      +bgc;
    vid += '&lightcolor='     +hlc;
    document.write('<object type="application/x-shockwave-flash"'); 
    document.write(' data="'+vid+'"');
    document.write(' width="'+dmx+'" height="'+dmy+'"');
    document.write(' wmode="transparent"'+'>');    
    document.write('<param name="movie" value="'+vid+'">');    
    document.write('<param name="wmode" value="transparent">');
    document.write('<embed pluginspage="http://www.macromedia.com/go/getflashplayer"');
    document.write(' type="application/x-shockwave-flash"');
    document.write(' src="'+vid+'"');
    document.write(' width="'+dmx+'"');
    document.write(' height="'+dmy+'"');
    document.write(' wmode="transparent">');
    document.write('<a href="http://www.macromedia.com/downloads/" target="_blank">');
    document.write('Plugins not found,</a>&nbsp;&nbsp;<A href="'+url+'" target="_blank">play</a>');
    document.write('</embed>');
    document.writeln('</object>');
}


/* -------------------------------------------- */
/* Flash Play Folder List                       */
/* Used with permission -  Jeroen Wijering (c)  */
/* License is required for commercial websites  */
/* for more information: www.jeroenwijering.com */
/* -------------------------------------------- */

function weAddFlashPlayFolder(url,dmx,dmy,ply,lop,mnu,thm,nri,sbr,fgc,bgc,hlc)
{
    var vid='flvplayer.swf';
    var htm = (thm)?40:22; 
    var top=dmy-1-(nri*htm);
    if(mnu) top -= 20; 
    if(top < 0) top=0;
    vid += '?file='              +url;
    vid += '&autostart='         +ply.toString();
    vid += '&repeat='            +lop.toString();
    vid += '&shownavigation='    +mnu.toString();
    vid += '&thumbsinplaylist='  +thm.toString();
    vid += '&autoscroll='        +sbr.toString();
    vid += '&frontcolor='        +fgc;
    vid += '&backcolor='         +bgc;
    vid += '&lightcolor='        +hlc;
    if(nri > 0) vid += '&displayheight='+top;
    document.write('<object type="application/x-shockwave-flash"'); 
    document.write(' data="'+vid+'"');
    document.write(' width="'+dmx+'" height="'+dmy+'"');
    document.write(' wmode="transparent"'+'>');    
    document.write('<param name="movie" value="'+vid+'">');    
    document.write('<param name="wmode" value="transparent">');
    document.write('<embed pluginspage="http://www.macromedia.com/go/getflashplayer"');
    document.write(' type="application/x-shockwave-flash"');
    document.write(' src="'+vid+'"');
    document.write(' width="'+dmx+'"');
    document.write(' height="'+dmy+'"');
    document.write(' wmode="transparent">');
    document.write('<a href="http://www.macromedia.com/downloads/" target="_blank">');
    document.write('Plugins not found,</a>&nbsp;&nbsp;<A href="'+url+'" target="_blank">play</a>');
    document.write('</embed>');
    document.writeln('</object>');
}




/*--- EndOfFile ---*/
