function newsLoader(category) {
	var area = document.getElementById('news-list');
	var list = document.createElement('script');
	list.src    = 'http://www.k.tamabi.ac.jp/pro/tms/data/news_'+ category +'.js';
	list.charset="utf-8";
	area.appendChild(list);
}

function text_focus (str) {
  if (str.value == 'サイト内検索') {
    str.value = '';
  }
  str.style.color = '#505060';
}
function text_blur (str) {
  if (str.value == ''){
    str.style.color = '#CCCCCC';
    str.form.reset();
  }
}


function scr_Up() {
   if(window.pageYOffset){
      scr_top = window.pageYOffset;
   } else if (document.all && document.getElementById && (document.compatMode=='CSS1Compat')) {
      scr_top = document.documentElement.scrollTop;
   } else {
      scr_top = document.body.scrollTop;
   }
   if(scr_top){
      scr_now = Math.ceil(scr_top*.15);
      scrollBy(0,-scr_now);
      if (scr_top-scr_now) setTimeout("scr_Up()",0);
   }
}

function openBrWindow()
{
	newWindow = window.open("","fow_person","width=720,height=600,left=8,top=8,screenX=8,screenY=8,scrollbars=1,resizable=1,location=0,directories=0,menubar=0,toolbar=0,status=0");
	newWindow.focus();
	return newWindow;
}

function openWin(winWidth, winHeight, targetWin) {
	newWindow = window.open("",targetWin,'width='+winWidth+',height='+winHeight+',left=0,top=0,screenX=0,screenY=0,scrollbars=0,resizable=1,location=0,directories=0,menubar=0,toolbar=0,status=0');
	newWindow.focus();
	return newWindow;
}

<!----- デジタルパンフレット用追加スクリプトここから----->
function OpenWin( strURL ){
    var screen_width = screen.availWidth - 10;
    var screen_height = screen.availHeight - 30;
    strFeatures = "screenX=0,screenY=0,width=" + screen_width + ",height=" + screen_height +",";
    strFeatures += "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";

    windowname=window.open( strURL, "", strFeatures );
    windowname.focus();
}
<!----- デジタルパンフレット用追加スクリプトここまで----->



