var statusBreakServiceNow=0; //status: 0-NoBreak 1-BreakNow 2-Before 10-NoBreak(eService) 11-BreakNow(eService) 12-Before(eService)

//option
if(statusBreakServiceNow==2) {
  if(location.hostname=="www.faraday-tech.com") {
    actionBreakService();
  } else if(location.hostname=="freelibrary.faraday-tech.com" || location.hostname=="ftc790.faraday.com.tw") {
    if(location.pathname && location.pathname.indexOf("banner.html")>-1) {
      actionBreakService();
    }	
  }
}
if(statusBreakServiceNow==1) {
   if(location.hostname=="www.faraday-tech.com" ) {
   	location.href="http://www.faraday.com.tw/index.html";
   }	
}
if(location.hostname=="www.faraday-tech.com" && location.pathname.indexOf("/eserviceii")>-1) {
  if(statusBreakServiceNow==10) {
  } else if(statusBreakServiceNow==12) {
    actionBreakService();
  } else if(statusBreakServiceNow==11){
    location.href="http://www.faraday.com.tw/index.html";
  }
}
function actionBreakService() {
  //window.open("/eserviceii/ServiceAlarm.htm","_blank","fullscreen=no,resizable=no,scrollbars=no, channelmode=no,directories=no, status=no,toolbar=no,menubar=no,location=no,width=600,height=400",null);
  //window.open("/eserviceii/main/breakServicePop.screen","_blank","fullscreen=no,resizable=no,scrollbars=no, channelmode=no,directories=no, status=no,toolbar=no,menubar=no,location=no,width=550,height=300",null);
  //location.href="/eserviceii/main/breakService.screen";
  WND=window.open("http://www.faraday.com.tw/breakServicePop.html","_blank","fullscreen=no,resizable=no,scrollbars=no, channelmode=no,directories=no, status=no,toolbar=no,menubar=no,location=no,width=550,height=300",null);
  if(WND=="undefined" || WND==null) {
   alert("If you have installed to prevent the Pop-up Windows tool formula, please temporarily closes it, in order to avoid influence homepage normal browsing.");
  }
}
