Actions

Ontolog Forum

<select id="timeOffset1" name="status_current" onchange="changeTimes(1);"><option value="">Please Select Time Zone</option><option value="-4">Eastern Daylight Time</option><option value="-5">Central Daylight Time</option><option value="-6">Mountain Daylight Time</option><option value="-7">Pacific Daylight Time</option><option value="1">British Summer Time</option><option value="2">Central European Summer Time</option><option value="3">Eastern European Summer Time</option><option value="5.5">India Standard Time</option><option value="10">Australia Eastern Standard Time</option><option value="9.5">Australia Central Standard Time</option><option value="8">Australia Western Standard Time</option><option value="12">New Zealand Standard Time</option></select>
If you do not see your timezone in the list above, then you can enter your UTC offset here:<input size="3" type="number" id="timeOffset2" value="0" onchange="changeTimes(2);">
August 24, 2020
TimeSession
OpeningScott Fouse
Keynote 1
Break
Paper Session 1
End of Session
August 25, 2020
TimeSession
Keynote 2
Break
Paper Session 2
Break
Poster Previews
End of Session
August 26, 2020
TimeSession
Poster Session
Break
Paper Session 3
Break
Dinner Speaker
End of Session
August 27, 2020
TimeSession
Keynote 3
Break
Paper Session 4
Break
Anniversary Panel
Award Presentation and Announcement of CogSIMA 2021
End of Session
<script language="JavaScript">function convertTime(datetime, offset) {var specifiedDate = new Date(datetime);var specifiedDay = specifiedDate.getDate();var utcDate = specifiedDate.getTime() + specifiedDate.getTimezoneOffset() * 60 * 1000;var convertedDate = new Date(utcDate + 60 * 60 * 1000 * offset);var convertedDay = convertedDate.getDate();var adjustment = "";if (convertedDay < specifiedDay) {adjustment = " (previous day)";} else if (convertedDay > specifiedDay) {adjustment = " (next day)";}var hours = convertedDate.getHours();var ampm = "AM";if (hours == 0) {hours = "12";} else if (hours == 12) {ampm = "PM";} else if (hours > 12) {ampm = "PM";hours = hours - 12;}var minutes = convertedDate.getMinutes();if (minutes < 10) {return hours + ":0" + minutes + " " + ampm + adjustment;} else {return hours + ":" + minutes + " " + ampm + adjustment;}}function changeTimes(entry) {var x = document.getElementById("timeOffset" + entry).value;var y = document.getElementsByName("time");for (let z of y) {var w = z.getAttribute("time");z.innerHTML = convertTime(w, x);}if (entry == 1) {document.getElementById("timeOffset2").value = x;} else {document.getElementById("timeOffset1").selectedIndex = 0;}}</script>