function clip_copy() {	if (document.all && navigator.userAgent.match(/windows/i) && document.obj.area.value) {	copy_obj = document.obj.area.createTextRange()	copy_obj.execCommand("Copy")	alert("クリップボードにコピーしました");	}}function selectAll(theField) {	var tempval=eval("document."+theField)	tempval.focus()	tempval.select()}
