function createLink() {
	var output = document.getElementById("output");

	// clear any previous output
	output.value = "";

	// this is a link to our blog
	output.value += '<a href="http://www.apexgiftbasketpros.com" ';

	// title, if there is one
	var title = document.getElementById("title").value;

	if (title.length > 0)
	{
		output.value += 'title="' + title  + '"';
	}

	// end open tag
	output.value += '>';

	// figure out which radio button is selected
	var option = 0;
	var count = 0;
	var inputs = document.getElementsByTagName("input");
	
	for(var i = 0; i < inputs.length; i++)
	{
		if(inputs[i].type == "radio")
		{
			if(inputs[i].checked == true)
			{
				option = count;
			}
			else
			{
				count++;
			}
		}
	}

	// use the appropriate image or text
	switch (option) {
		case 0 : output.value += title; break;
		case 1 : output.value += '<img border="0" src="http://www.apexgiftbasketpros.com/wp-content/themes/blix-edited/images/apexblog-small.jpg" />'; 
			 break;
		case 2 : output.value += '<img border="0" src="http://www.apexgiftbasketpros.com/wp-content/themes/blix-edited/images/apexblog-large.jpg" />'; 
			 break;
	}

	// end tag
	output.value += '</a>';
}