function display_badge(blogid, size) {
	var feedid = blogid;
	var size = size;
	var height;
	var width;
	
	if (size == 'medium') {
		
		height = '75';
		width = '200';
	}
	
	if (size == 'large') {
		
		height = '113';
		width = '300';
	}
	if (size == 'small') {
	
		height = '56';
		width = '150';
	}
	
	var output= '<a style="background-image: url(http://www.vcbloggers.org/badge/badge_' +size +'.png); width: ' +width  +'px; height: ' +height +'px; display: block; clear:both;" href="http://www.vcbloggers.org/"></a>';
	document.write(output);
	}
