//accessId
var accessId ;
var accessIdList = ["20111202DSYZA8","20111129J07WBQ","201111154KEZ8T","201111103ABQ1G","20111107BXE42F","20111103OZHEIX","20111031LAICOG","20111026SIDB92","20111020CF0557","20111018UB52NS","20111012LAKJAC","201110067UQ8LK","20111004WPQ1HR","20110921167HX4"]; 
//get url and analysis
var url = location.href;
if (url.indexOf(".html") != -1){
  //get Id
  var StratPOS = url.length - 19;
  accessId = url.substr(StratPOS,14);
  if ( accessIdList.length > 0 ){
    if (!in_array(accessId , accessIdList)){
      alert("很抱歉,本戰報已經下架囉!!");
      window.top.location.href = "http://events.fashionguide.com.tw/2009/09/annualsale/DM/";
    } 
  }else{
    alert("很抱歉,所有戰報已經下架囉!!");
    window.top.location.href = "http://www.fashionguide.com.tw/";
  }
  
}

function in_array(needle, haystack) {
  for (var i=0; i<haystack.length; i++){
    if (haystack[i] === needle) return true;
  }
  return false;
} 

