Southside Nice! Mine was in Elmhurst at the York theater I think it was starwars.
Thats funny, I saw Starwars on a test in winter haven Florida 60 days before they released to the world.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="calc.js"></script>
<script type="text/javascript" src="writer.js"></script>
<script type="text/javascript" src="request.js"></script>
<link href="clock.css" rel="stylesheet" type="text/css" media="all">
</head>
<body>
<div id="mybody"></div>
<script type="text/javascript">
var df = null;
var jt = null;
var result = ajax_request();
var ServerDSTCheck = new Date(parseFloat(1301270089978.7)).getTime();
function dst_check()
{
var Spring = new Date();
Spring.setTime(Date.UTC(2011, 2, 13, 08, 00, 00));
GoSpring = Spring.getTime();
var Fall = new Date();
Fall.setTime(Date.UTC(2011, 10, 6, 07, 00, 00));
GoFall = Fall.getTime();
if (ServerDSTCheck >= GoSpring && ServerDSTCheck < GoFall)
{
df = -18000000;
jt = "GMT - 5:00";
}
else if (ServerDSTCheck < GoSpring || ServerDSTCheck >= GoFall)
{
df = -21600000;
jt = "GMT - 6:00";
} return df;
return jt;
}
dst_check();
var done = 0;
creator("div","offset_label");
creator("div","offset");
creator("span","offset","ap_offset_value");
creator("span","offset","ap_nice_offset");
creator("span","offset","button_24");
writer("offset_label",jt);
writer("offset"," ","ap_offset_value");
writer("offset","<button name='24_sw' id='24_sw' onclick='clockInstance.switch_time()'>Switch to 24 hour display</button>","button_24");
var chgChk = new Date().getTime();
var chgChkInt = new Date().getTime();
var clockInstance = null;
setInterval("wrapper()", 150);
function wrapper()
{
chgChkInt = new Date().getTime();
if ((chgChkInt < chgChk) || ((chgChkInt-chgChk) > 1000) || (chgChkInt == chgChk) || result == null)
{
result = ajax_request();
clockInstance = null;
}
if (result != null && clockInstance == null)
{
var srv_mls = parseFloat(result);
dst_check();
clockInstance = new calc(srv_mls,df);
clockInstance.nice_offset();
}
if (clockInstance != null)
{
ServerDSTCheck+=(chgChkInt-chgChk);
var df_a = df;
dst_check();
var df_b = df - df_a
if (df_b != 0)
{
clockInstance = null;
result = null;
return;
}
clockInstance.to_utc();
clockInstance.offset_time();
writer("offset_label",jt);
writer("offset",clockInstance.apOffsetTime,"ap_offset_value");
writer("offset",clockInstance.niceOffset,"ap_nice_offset");
}
chgChk = new Date().getTime();
}
wrapper();
</script>
</body>
</html>