
function imgcode(img)
{
	var src = "<img style='float: left; margin: 10px;' src='" + img + "'/>";
	src += "<p>Copy the following code snippet and paste into your blog to display this image link to our site.  Alternatively, you may save this image";
	src += " and serve it from your own server.</p>";
	src +="<p>Thanks so much for your support!</p>";
	src += '<form style="width: 95%; clear: left; margin: 10px;"><textarea style="width: 100%" rows="4" name="a">&lt;a href="http://www.doitdoitdone.com/" title="DoitDoitDone!" alt="doitdoitdone.com"&gt;&lt;img src="http://www.doitdoitdone.com/' + img + '"/&gt;&lt;/a&gt;</textarea></form>';
	YUI().use("blue","dialog", function(Y) {
			new BLUE.dialog.Dialog({title: 'Media Code Snippet', body: src, width: 500});
		});
}


