﻿function winopen(url_id)
{	
	var targetUrl;
	switch (url_id)
	{
	    default : 
					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 PopupNowWindow(act) {
    var targetUrl;
    switch (act) {
        case "100Sa2": targetUrl = "https://exama.ceec.edu.tw/RegInfoSiteSat/OpenSysDefault.aspx";
            break;
    }
    var c = ((new Date()).getTime()).toString();
    var nurl = targetUrl;// + "?ttt=" + c;
    var width =1050;// window.screen.availWidth;
    var height = window.screen.availHeight;
    
    var dialogFeatures = "center:yes;dialogHeight:"+ height+";dialogWidth:"+width+"px;help:no;resizable:no;status:no";

    var returnValue = window.showModalDialog(nurl, window, dialogFeatures);
    
    return returnValue;
}

function NotOpenMsg()
{
	alert("系統維護中，請稍後再試");
	return false;
}
