function fdb_widget(options)
{
	// legacy
	if(options.format){
		var widths = {slim:257, normal:514, large:771};
		options.width = widths[options.format] + 3;
	}

	var frame = document.createElement('iframe');
		
	frame.setAttribute("src", "http://www.fans-de-bretagne.com/widget/embed/" + options.guid);
	frame.setAttribute('frameborder', '0');
	frame.setAttribute('border', '0');
	frame.setAttribute('scrolling', 'no');
	frame.setAttribute('width', options.width + 'px');
	frame.setAttribute('height', options.height + 'px');
	
	var scr = document.getElementById('fdb_widget'); 
	scr.parentNode.insertBefore(frame, scr);
}
