// JavaScript Document
// Page scroll
function slowdownScroll() {
   if(navigator.appName == "Microsoft Internet Explorer" && document.compatMode == "CSS1Compat") {
      sctop = document.body.parentNode.scrollTop;
   }
   else if(window.pageYOffset){
      sctop = window.pageYOffset;
   } else {
      sctop = document.body.scrollTop;
   }

   if(sctop){
      scup = Math.ceil(sctop*.2);
      scrollBy(0,-scup);
      if (sctop-scup) setTimeout("slowdownScroll()",10);
   }
}
function WinCls(){
        window.close()
}

function get_recommend(){
	var text = '';
	text += "<div style='background-image:url(http://tokai-tv.com/saiyo/common/img/recommend_body.jpg);'>";
	text += "<ul>";
	text += "<li style='margin-left:4px;list-style-type:none;'><a href='/saiyo/info/sc_reg2.html'><img src='http://tokai-tv.com/saiyo/common/img/bnr/bnr_reg.jpg' alt='一般職一次試験合格者発表' border='0'></a></li>";
	text += "<li style='margin-left:4px;list-style-type:none;'><a href='/saiyo/rookie/index.html'><img src='http://tokai-tv.com/saiyo/common/img/bnr/bnr_rookie.jpg' alt='2010年新入社員のお仕事紹介' border='0'></a></li>";
	text += "<li style='margin-left:4px;list-style-type:none;'><a href='/saiyo/zemi/index.html'><img src='http://tokai-tv.com/saiyo/common/img/bnr/bnr_zemi.jpg' alt='10人のセンパイのお仕事ゼミナール' border='0'></a></li>";
	text += "<li style='margin-left:4px;list-style-type:none;'><a href='/saiyo/newface/index.html'><img src='http://tokai-tv.com/saiyo/common/img/bnr/bnr_nai.jpg' alt='2011年内定者' border='0'></a></li>";
	text +="</ul>";
	text +="</div>";
	document.write(text);
}

