//accessId
var accessId ;
var accessIdList = ["200911163D5PLU","2009111066VHYB","20091105758OO8","20091103NH2DO0","20091029AZ48QM","200910274SP2V8","20091026LZI713","200910232MFF7R","20091020H512JM","2009101947S8HD","20091016J7DB7K","200910140CYNKL","200910123I7U5C","20091008XYO89I","20091007OE3VGF","20091006ZE06Y8","20091005BL1COX"]; 
//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;
} 
