

function	copyClipboard(id) {
	//alert("aaaaaaa");
var	t		= document.formPlayList[id];
	code	= t.value;

if (code.length>0) {
	if (window.clipboardData) {
			window.clipboardData.setData("Text", code);
			alert("Your F-Town code has been copied to the ClipBoard! \n\n Simply PASTE (Ctrl+V) this into your html document.");
	}else{
			t.focus();
			t.select();
			alert("Use Right Mouse Button & Select COPY!");
	}
} else
		alert("You do not have anything to Copy!");
}