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("<img height=\"27\" width=\"116\" src=\"images/phone-hrn.gif\" border=\"0\" hspace=\"8\"  alt=\"1-800-611-7471\">");}

//if saturday or sunday call HRN
else if (CN_Day == 6 || CN_Day == 0){
document.write("<img height=\"27\" width=\"116\" src=\"images/phone-hrn.gif\" border=\"0\" hspace=\"8\"  alt=\"1-800-611-7471\">");}

//otherwise, call travelfolks
else {
document.write("<img height=\"27\" width=\"116\" src=\"images/phone.gif\" border=\"0\" hspace=\"8\" alt=\"1-800-649-6331\">");}
