function writeAd (ads) {
	var query = [],
		index = window.rotationState % ads.length,
		specs = ads[index],
		size = specs.size.split('x'),
		width = size[0],
		height = size[1],
		s;
	specs.width = width;
	specs.height = height;
	if (specs.href) {
		specs.href = escape(specs.href);
	}
	delete specs.size;
	
	for (s in specs) {
		query.push(s + '=' + specs[s]);
	}
	
	if (specs.type === 'custom') {
		document.write(specs.code);
	} else {
		document.write('<iframe scrolling="no" frameborder="0" width="' + width + '" height="' + height + '" src="/adframe.php?' + query.join('&') + '"></iframe><p class="advertise_here"><a href="mailto:info@prolificinteractive.com" title="info@prolificinteractive.com">Advertise on Capitol Report.</a></p>');
	}
}