﻿//イベントの情報を参照する関数
function getEvent(e){
    
    if(e.target == undefined){ //targetプロパティ非対応の場合
    
        alert("Special discount for working holiday visa holders." + "\n33,000yen for 30days (avarage 1,100yen/day)" + "\nBook now !!");
        return;
        
    }
    
	alert("Special discount for working holiday visa holders." + "\n33,000yen for 30days (avarage 1,100yen/day)" + "\nBook now !!" );
	
}