
  function showHideComments () { 
     whichpost = document.getElementById('comments-block'); 
     tag = document.getElementById('showhide');  
     if (whichpost.style.display=="none") { 
        whichpost.style.display="block"; 
        tag.innerText = "[&mdash;]";
        tag.innerHTML = "[&mdash;]";
        tag.blur();
     } 
     else { 
        whichpost.style.display="none"; 
        tag.innerText = "[+]";
        tag.blur();
     } 
  } 


function addplayer00(filename, title)
{

  
	str = '<div style="display:inline; margin:10px 10px;border:1px dashed #555; padding:4px; height:30px; width:50px" title="'+title+'">';
	str += '</div>';
	document.write(str);
}



function addplayer(filename, title)
{
	str = '<div style="display:inline; margin:10px 10px;border:1px dashed #555; padding:4px; height:30px; width:50px" title="'+title+'">';
	str += '<OBJECT codeBase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,47,0" type="application/x-shockwave-flash"';
	str += 'height=20 width=35 classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"><PARAM NAME="_cx" VALUE="926"><PARAM NAME="_cy" VALUE="529">';
	str += '<PARAM NAME="FlashVars" VALUE="926"><PARAM NAME="Movie" VALUE="simplePlay.swf?theFile='+filename+'"><PARAM NAME="Src" VALUE="simplePlay.swf?theFile='+filename+'">';
	str += '<PARAM NAME="WMode" VALUE="Window"><PARAM NAME="Play" VALUE=""><PARAM NAME="Loop" VALUE=""><PARAM NAME="Quality" VALUE="low"><PARAM NAME="SAlign" VALUE=""><PARAM NAME="Menu" VALUE="-1"><PARAM NAME="Base" VALUE="">';
	str += '<PARAM NAME="AllowScriptAccess" VALUE="always"><PARAM NAME="Scale" VALUE="ShowAll"><PARAM NAME="DeviceFont" VALUE="0"><PARAM NAME="EmbedMovie" VALUE="0"><PARAM NAME="BGColor" VALUE="#234"><PARAM NAME="SWRemote" VALUE="">';
	str += '<param name="wmode" value="transparent">';	// ???
	str += '<embed  src="simplePlay.swf?theFile='+filename+'" width="35" height="20" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" bgcolor="#aaaaaa" wmode="transparent" ></embed>';
	str += '</OBJECT></div>';
	document.write(str);
}