function copytxt(data) 
{
	var tempval=eval("document."+data)
	tempval.focus()
	tempval.select()
	therange=tempval.createTextRange()
	therange.execCommand("Copy")
}
