	var tags = {'blog':" In which I ramble about things more or less programming related",
				'history': " In which I tell the story of my history of artmaking",
				'resume': "In which you may see a faux resume",
				'knowing': "In which you may learn more about the inner me.",
				'professional': "In which I reveal my life as a professional",
				'writing': "In which I discuss things that I have written",
				'list': "In which I list things of various sorts",
				'misc': "In which I ramble about things non-programming related",
				'progint': "In which I attempt to hock my latest book.",
				'ciid': "In which you may see what I'm up to at CIID.",
				'twitter': "In which I tweet."
		};

	function showDescription(id) {
			var desc = document.getElementById("desc_holder");
			desc.innerHTML = tags[id];
	}
	
	function hideDesc() {
		var desc = document.getElementById("desc_holder");
		desc.innerHTML = "";
	}

function createSWF() {
	alert("create swf ");
            var swfVersionStr = "10.0.0";
            var xiSwfUrlStr = "/playerProductInstall.swf";
            var flashvars = {};
            var params = {};
            params.quality = "high";
            params.bgcolor = "#ffffff";
            params.allowscriptaccess = "sameDomain";
            params.allowfullscreen = "false";
            var attributes = {};
            attributes.id = "CopyToClipboard";
            attributes.name = "CopyToClipboard";
            attributes.align = "middle";
	alert(" semi - complete");

            swfobject.embedSWF(
                "CopyToClipboard.swf", "flashContent", 
                "100%", "100%", 
                swfVersionStr, xiSwfUrlStr);
	alert(" complete");
}

function copylink(string) {
	alert(string);
	var swf = document.getElementById("CopyToClipboard");
	swf.copyToClipboard(string);
}


