mod_attach_event("rte_insert_item", flowplayer_insert_item)

function flowplayer_insert_item(rte, type) {
	if (type == "flowplayer_flv") {
		//insert a flash placeholder
		if (!rte.insert_args['src']) {
			new ctx_alert(LCL_SELECT_AN_ITEM);
			return false;
		}
		
		var width = $("insert_flv_sizex").value.trim();
		var height = $("insert_flv_sizey").value.trim();
		
		//sanity checks
		if (isNaN(width)) width = 0;
		if (isNaN(height)) height = 0;
		
		var html = '<img src="' + PATH_ROOT + 
			'/admin/images/blank.gif" class="flashImage" alt="{flowplayer_flv:' + 
			rte.insert_args['src'] + '}" width="' + width + '" height="' +
			height + '" alt=""/>';
		
		rte.rte_cmd(null, null, ['insertHTML', html]);
		slideout_element($(rte.id + "_panel_insert"));
	}
}
