(function(){
		
function serveA()
{
	var d = new Date;
	var dw = '';
	window.fm_delivery_query = 'deliver.php?p=' + escape(window.fm_publisher_id);
	addKV("z", window.fm_zone_id);
	addKV("bz", escape(window.fm_backup));
	addKV("tz",  d.getTime());
	addKV("v", window.fm_delivery_version);
	addKV("c", window.fm_collapse);
	dw += '<iframe name="fm_delivery_frame-' + window.fm_zone_id + '" id="fm_delivery_frame-' + window.fm_zone_id + '" width="' + window.fm_zone_width + '" height="' + window.fm_zone_height + '" frameborder="0" src="http://dynamic.fmpub.net/deliver/' + window.fm_delivery_query + '" marginwidth="0" marginheight="0" vspace="0" hspace="0" scrolling="no" allowtransparency="true"'; 
	if(typeof(window.fm_background_color) != 'undefined')
	{
		dw += ' style="background: ' + window.fm_background_color + '" ';
	}
	dw += '></iframe>';
	document.write(dw);
}
function addKV(k,v)
{
	if(v)
	{
		window.fm_delivery_query+="&"+k+"="+v;
	}
}
serveA();
})()

function collapse(i)
{
	f = document.getElementById(i);
	f.style.display = 'none';
}
