function init_timeline()
{
	var timeline_iframeURL = 'http://test01.regota.com/timelines.php?external=true';
	if (typeof ext_timeline_id == 'undefined' || ext_timeline_id < 1)
	{
		document.write('Timeline ID should be set!');
		return;
	}
	
	timeline_iframeURL += '&id=' + ext_timeline_id;
	
	if (typeof ext_timeline_width == 'undefined')
		ext_timeline_width = 840;
	else if(ext_timeline_width < 413)
		ext_timeline_width = 413;

	if (typeof ext_timeline_height == 'undefined')
		ext_timeline_height = 450;
	else if(ext_timeline_height < 308)
		ext_timeline_height = 308;

	timeline_iframeURL += '&width=' + (ext_timeline_width - 12);
	timeline_iframeURL += '&height=' + (ext_timeline_height - 7);

	if (typeof ext_timeline_locale == 'string')
		timeline_iframeURL += '&locale=' + ext_timeline_locale;
		
	if (typeof ext_timeline_partner == 'string')
		timeline_iframeURL += '&partner=' + ext_timeline_partner;


	document.write('<iframe src="' + timeline_iframeURL + '" width="' + ext_timeline_width + '" height="' + ext_timeline_height + '" scrolling="no" frameborder="0" allowtransparency="true" id="timelineIFrame" style="background-color: transparent;"></iframe>');
}

init_timeline();