function mailpage(thelang)
{
  if (thelang=="tc"){
	mail_str = "mailto:?subject="+encodeURIComponent("你收到以下連接考試及評核局網站的超連結");
	mail_str += "&body="+encodeURIComponent("請按這裏以連接送上的超連結﹕")+ document.title;
	mail_str += "%0A%0A" + location.href;
	location.href = mail_str;
  }else{
	mail_str = "mailto:?subject=Check out the " + document.title;
	mail_str += "&body=Your friend had sent about " + document.title;
	mail_str += ".%0A%0A You can view it at, " + escape(location.href);
	location.href = mail_str;
  }
}

var popUpWin=0;
function popUpWindow(URLStr, left, top, width, height)
{
  if(popUpWin)
  {
    if(!popUpWin.closed) popUpWin.close();
  }
  popUpWin = open(URLStr, 'popUpWin', 'toolbar=no,location=no,directories=no,status=no,menub ar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+', top='+top+',screenX='+left+',screenY='+top+'');
}

function filltheform(theForm, thetitle, thelink, thelang, thesess){
	
	popUpWindow('#','','',600,330);
	theForm.htitle.value=thetitle;
	theForm.hlink.value=thelink;
	theForm.hlang.value=thelang;
	theForm.tsession.value=thesess;
	//alert(theForm.tsession.value);
	
	theForm.submit();
}