function getLinkHtml(type)
{
	switch (type)
	{
		case 'image':
			document.getElementById('link_html_code_text').value =
				'<div style="width: 170px;height: 125px;background-image: url(\'http://www.stamp-price.org/stamp.jpg\');font-size: 90px;padding-top: 15px;padding-left: 20px;margin-left: 5px"><a id="current_stamp_price" style="text-decoration: none; color: White;" href="http://www.stamp-price.org/">Current stamp price<script type="text/javascript" src="http://www.stamp-price.org/stamp-price-js.php"></script>&cent;</a></div>';
			break;
		default:
			document.getElementById('link_html_code_text').value =
				'<a href="http://www.stamp-price.org/"><span id="current_stamp_price">Stamp price<script type="text/javascript" src="http://www.stamp-price.org/stamp-price-js.php"></script></span>&cent;</a>';
			break;
	}
}

function selectAllText(control_id)
{
	var text_val=document.getElementById(control_id);
	text_val.focus();
	text_val.select();
}

