function getFlash(sourceFile, wid, hei)
{
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="'+ wid +'" height="'+ hei +'">')
	document.write('<param name="movie" value="' + sourceFile + '">')
	document.write('<param name="quality" value="high">')
	document.write('<param name="wmode" value="transparent">')
	document.write('<embed src="' + sourceFile + '" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" wmode="transparent" width="'+ wid +'" height="'+ hei +'"></embed>')
	document.write('</object>')
}

function getFlash2(sourceFile, wid, hei)
{
	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="'+ wid +'" height="'+ hei +'" id="FLVPlayer">')
	document.write('<param name="movie" value="/player/FLVPlayer_Progressive.swf" />')
	document.write('<param name="salign" value="lt" />')
	document.write('<param name="quality" value="high" />')
	document.write('<param name="scale" value="noscale" />')
	document.write('<param name="FlashVars" value="&MM_ComponentVersion=1&skinName=/player/Clear_Skin_3&streamName=' + sourceFile + '&autoPlay=true&autoRewind=false" />')
	document.write('<embed src="/player/FLVPlayer_Progressive.swf" flashvars="&MM_ComponentVersion=1&skinName=/player/Clear_Skin_3&streamName=' + sourceFile + '&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="'+ wid +'" height="'+ hei +'" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />')                
	document.write('</object>')
}

function fetchFile(file,Width,Height)
{
	var screenWidth = screen.availWidth;
	var screenHeight = screen.availHeight;
	var Left = Math.round((screenWidth - Width) / 2);
	var Top = Math.round((screenHeight - Height) /2);
	
	window.open(file,'_blank','scrollbars=no,resizable=0,width='+Width+',height='+Height+',left=' + Left +',top=' + Top);
}
function checkThis(element)
{
  var selElem = element.options[element.selectedIndex].value
  if(selElem == "other")
  {
    document.getElementById("otherSource").style.visibility = "visible";
    document.getElementById("otherSource").focus();
  } 
}
