﻿function winopen(url_id)
{	
	var targetUrl;
	switch (url_id)
	{
	    case "A" : targetUrl="https://exama.ceec.edu.tw/ExamInfoSite/";
					break;
					
		case "B" : targetUrl="https://examb.ceec.edu.tw/TestIdSearch/D_w31.aspx";
					break;
	}	
	
	var newwin=window.open("","","scrollbars");
	if(document.all)
	{
		newwin.moveTo(0,0);
		newwin.resizeTo(screen.width,screen.height);
	}
	
	var c=((new Date()).getTime()).toString();	
	newwin.location=targetUrl+"?t=" +c;
	//return false;
}

function NotOpenMsg()
{
	alert("99學年度學科能力測驗報名時間已截止，報名資料資料整理中！\n報名資料確認查詢於98年12月8日上午9時開放！");
	//return false;
}