CN_Now = new Date();
CN_NowDay = new Date();
//localtime = CN_Now.toUTCString();
CN_Hours = CN_Now.getUTCHours();
CN_Day = CN_NowDay.getUTCDay();
CN_Minutes = CN_Now.getUTCMinutes();

//if past 5:30pm or before 9am call HRN (GMT + 4 hrs)
if ((CN_Hours) >= 21 && (CN_Minutes) >= 30 || (CN_Hours) <13) {
document.write("1-800-611-7471");}

//if saturday or sunday call HRN
else if (CN_Day == 6 || CN_Day == 0){
document.write("1-800-611-7471");}

//otherwise, call travelfolks
else {
document.write("1-800-649-6331 &nbsp; &nbsp; &nbsp;or &nbsp; &nbsp; &nbsp;1-603-355-1200");}
