/*--- Avanquest WebEasy External Script ---*/

/* -------------------------------------------- */
/* Embed MS Windows Video File                  */
/* -------------------------------------------- */

function weAddWindowsVideo(url,dmx,dmy,ply,mnu,dsp,asr,aud,lop,spd,rmn,enb) 
{ 
	if (IE) 
	{ 
		document.writeln('<object classid="clsid:6bf52a52-394a-11d3-b153-00c04f79faa6"');
	} 
	else 
	{ 
		document.writeln('<object type="video/x-ms-asf-plugin" data="' + url + '"');
	} 
	document.writeln( 
	' width="' + dmx +'" height="' + dmy + '">' + 
	'  <param name="URL" value="' + url + '">' + 
	'  <param name="autoStart" value="' + ply + '">' + 
	'  <param name="uiMode" value="' + mnu + '">' + 
	'  <param name="fullScreen" value="' + dsp + '">' + 
	'  <param name="stretchToFit" value="' + asr +'">' + 
	'  <param name="mute" value="' + aud +'">' + 
	'  <param name="playCount" value="' + lop +'">' + 
	'  <param name="rate" value="' + spd + '">' + 
	'  <param name="enableContextMenu" value="' + rmn + '">' + 
	'  <param name="enabled" value="' + enb + '">' + 
	'  Windows Media Player 9 is required to view this clip.' + 
	'  It can be downloaded from' + 
	'  <a href="http://www.microsoft.com/windows/windowsmedia/9series/player.aspx">' + 
	'  the Microsoft web site</a>.' + 
	'</object>'); 
}

/* -------------------------------------------- */
/* Flash Video Player                           */
/* Used with permission -  Jeroen Wijering (c)  */
/* License is required for commercial web sites */
/* for more information: www.jeroenwijering.com */
/* -------------------------------------------- */

function weAddFlashVideo(url,dmx,dmy,ply,lop,img,fgc,bgc,hlc)
{
	var vid='flvplayer.swf';
	vid += '?file='		+url;
	vid += '&autostart='+ply;
	vid += '&repeat='	+lop;
	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>');
}




/*--- EndOfFile ---*/

