if(!window.ec_pid)
{
	function ef_print(v_text)
	{
		document.write(v_text);
	}

	function ef_render_blank(v_width, v_height)
	{
		ef_print('<span style="margin: 0; padding: 0; border: none;" ' +
			' width="' + v_width + '" height="' + v_height +
			'">electioncampaign.eu widget error.</span>');
	}

	function ec_render_widget(v_config)
	{
		var v_campaign = v_config.key;
		var v_width = v_config.width;
		var v_height = v_config.height;

		if(!window.ec_pid)
		{
			window.ec_pid = parseInt(Math.random() * Math.pow(10, 11));
			window.ec_cid = v_campaign;
		}
		else if(window.ec_cid != v_campaign)
		{
			ef_render_blank(v_width, v_height);
			return;
		}

		ef_print('<iframe style="margin: 0; padding: 0; border: none;" marginwidth="0" marginheight="0" vspace="0" hspace="0" ' +
		'allowtransparency="true" frameborder="0" scrolling="no" width="' + v_width + '" height="' + v_height +
		'" src="http://www.electioncampaign.eu/sdo/widgets/display?c=' + window.ec_cid +
		'&amp;w=' + v_width + '&amp;h=' + v_height + '&amp;p=' + window.ec_pid + '" ></iframe>');
	}
}
