// JavaScript Document
function playVideo(vidToPlay)
{
document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="320" height="240" id="FLVPlayer">\n');
document.write('<param name="movie" value="FLVPlayer_Streaming.swf" />\n');
document.write('<param name="salign" value="lt" />\n');
document.write('<param name="quality" value="high" />\n');
document.write('<param name="scale" value="noscale" />\n');
document.write('<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=Corona_Skin_2&streamName=flvstreamer.php?file=' + vidToPlay + '&autoPlay=true&autoRewind=false" />\n');
document.write('<embed src="FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=Corona_Skin_2&bufferTime=7&streamName=flvstreamer.php?file=' + vidtoPlay + '&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="320" height="240" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />\n');
document.write('</object>\n');
/*
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0" width="320" height="240" id="FLVPlayer">
    <param name="movie" value="FLVPlayer_Streaming.swf" />
    <param name="salign" value="lt" />
    <param name="quality" value="high" />
    <param name="scale" value="noscale" />
    <param name="FlashVars" value="&MM_ComponentVersion=1&serverName=modelsearchamerica.com&skinName=Clear_Skin_1&appName=msa/msa&streamName=msa.v3&isLive=false&bufferTime=7&autoPlay=false&autoRewind=false" />
    <embed src="FLVPlayer_Streaming.swf" flashvars="&MM_ComponentVersion=1&serverName=modelsearchamerica.com&skinName=Clear_Skin_1&appName=msa/msa&streamName=msa.v3&isLive=false&bufferTime=7&autoPlay=false&autoRewind=false" quality="high" scale="noscale" width="320" height="240" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" />    
</object>
*/
}
	
function writePlayer(text)
{
	var id = "vidPlayerContent";
	if (document.getElementById)
	{
		x = document.getElementById(id);
		x.innerHTML = '';
		x.innerHTML = text;
	}
	else if (document.all)
	{
		x = document.all[id];
		x.innerHTML = text;
	}
	else if (document.layers)
	{
		x = document.layers[id];
		x.document.open();
		x.document.write(text);
		x.document.close();
	}
}