<!--
function hihyouzi(){
window.status = '';
return true;
}
if (document.layers)
document.captureevents(event.mouseover | event.mouseout);
document.onmouseover = hihyouzi;
document.onmouseout = hihyouzi;
// -->

function clipCopy(theField) {
	var tempval=eval("document."+theField)
	if (document.all && navigator.userAgent.match(/windows/i) && tempval.value) {
		copy_obj = tempval.createTextRange()
		copy_obj.execCommand("Copy")
		alert("クリップボードにコピーしました");
	}
}

function selectAll(theField) {
	var tempval=eval("document."+theField)
	tempval.focus()
	tempval.select()
}