
function insertObject(url, type)
{
	code = '<object classid="clsid:22D6F312-B0F6-11D0-94AB-0080C74C7E95">' + 
			'<param name="Filename" value="' + url + '"/>' + 
			'<param name="AutoStart" value="true"/>' + 
			'<!--[if !IE]> <-->' + 
			'<object type="' + type + '" data="' + url + '" width="320" height="' + (type == "audio/mpeg" ? "50" : "240") + '">' + 
			'<param name="AutoStart" value="1"/>' + 
			'<embed pluginspage="http://www.microsoft.com/Windows/Downloads/Contents/Products/MediaPlayer/" src="' + url + '" width="320" height="' + (type == "audio/mpeg" ? "20" : "240") + '" type="application/x-mplayer2" autostart="0"></embed>' + 
			'</object>' + 
			'<!--> <![endif]-->' + 
			'</object>';
	return code;
}
