function copyText(obj) {
	ie = (document.all)? true:false
	if (ie){
		var rng = document.formp.createTextRange();
		rng.moveToElementText(obj);
		rng.scrollIntoView();
		rng.select();
		rng.execCommand("Copy");
		rng.collapse(false);
	}
}

function copyText1(obj) {
	clipboardData.setData('Text',obj.value);
}
