//ブラウザオープンfunction brwsWin(url) {	newwin =window.open(url,'exp','toolbar=no,location=no,resizable=yes,status=no,scrollbars=yes,width=550,height=400,left=0,top=0');	newwin.focus();}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()}