function selectThis(src) {
	document.selection.clear;
	txt = eval(src +".innerText");
	theObj = document.all(txt);
	txtRange = document.body.createTextRange();
	txtRange.moveToElementText(eval(src));
	txtRange.select();
	//txtRange.execCommand("RemoveFormat");
	txtRange.execCommand("Copy");
	}
