//使用ブラウザ判別
var brTypeNC6 = 1;
var brTypeIE  = 2;
var isType    = 0;
var isNC6 = document.addEventListener;
var isIE  = document.all;
if(isNC6){
  isType = brTypeNC6;
}else{
  isType = brTypeIE;
}
