function copyit(theField) {
	var tempval=eval("document."+theField)
	tempval.focus()
	tempval.select()
	if(tempval.createTextRange){
		therange=tempval.createTextRange()
		therange.execCommand("Copy")
	}
}




