<html>
<head>
<title>
the illuminati
</title>
<style>
body {
background-color:black;
}
</style>
<script type="text/javascript">
<!--
//
// countdown timer
//
//
// configuration
//
var month = '12'; // '*' for next month, '0' for this month or 1 through 12 for the month
var day = '7'; // offset for day of month day or + day
var hour = 8; // 0 through 23 for the hours of the day
var tz = -5; // offset for your timezone in hours from utc
var lab = 'countdowntimer'; // the id of the page entry where the timezone countdown is to show
// end configuration
function start() {displaytzcountdown(settzcountdown(month,day,hour,tz),lab);}
// start function can be changed
window.onload = start;
//
// countdowntimer
//
function settzcountdown(month,day,hour,tz)
{
var todate = new date();
if (month == '*') {
todate.setmonth(todate.getmonth() + 1);
} else if (month > 0) {
if (month <= todate.getmonth())todate.setyear(todate.getyear() + 1);
todate.setmonth(month-1);
}
if (day.substr(0,1) == '+') {
var day1 = parseint(day.substr(1));
todate.setdate(todate.getdate()+day1);
} else {
todate.setdate(day);
}
todate.sethours(hour);
todate.setminutes(0-(tz*60));
todate.setseconds(0);
var fromdate = new date();
fromdate.setminutes(fromdate.getminutes() + fromdate.gettimezoneoffset());
var diffdate = new date(0);
diffdate.setmilliseconds(todate - fromdate);
return math.floor(diffdate.valueof()/1000);
}
function displaytzcountdown(countdown,tzcd) {
if (countdown < 0) {
document.getelementbyid("countdowntimer").innerhtml = "sorry, you are too late.";
} else {
var secs = countdown % 60;
if (secs < 10) {
secs = '0' + secs;
}
var countdown1 = (countdown - secs) / 60;
var mins = countdown1 % 60;
if (mins < 10) {
mins = '0' + mins;
}
countdown1 = (countdown1 - mins) / 60;
var hours = countdown1 % 24;
var days = (countdown1 - hours) / 24;
document.getelementbyid("countdowntimer").innerhtml = days + " day" + (days == 1 ? '' : 's') + ' + ' + hours + 'h : ' + mins + 'm : ' + secs + 's';
settimeout('displaytzcountdown('+(countdown-1)+',\''+tzcd+'\');',999);
}
}
// end countdowntimer
-->
</script>
</head>
<body>
<div id="countdowntimer">
</div>
</body>
</html>