function psy_add_close_cross(legend,type)
{
	var img=document.createElement("img");
	img.setAttribute("src","images/del.gif");
	img.setAttribute("alt","[X]");
	img.onmouseover=function(){this.className='smiehover';}
	img.onmouseout=function(){this.className='sm';}
	if(type=="smile")
	{
		img.onclick=function(){parent.psy_clear_smiles();parent.psy_box_remove(this);}
	}
	else if(type=="music")
	{
		img.onclick=function()
		{
			var player=document['player'];
			if(player&&player.sendEvent)
			{
				player.sendEvent('STOP','true');
			}
			parent.psy_box_remove(this);
		}
	}
	else
	{
		img.onclick=function(){parent.psy_box_remove(this);}
	}
	legend.appendChild(img);
}
