IANticipate's Avatars

Witchblade [TM] it's Logo and All Related Characters [TM]© 2000
Top Cow Productions, Inc.
Witcblade Television Images © 2000, 2001
Turner Network Television
A Time Warner Company
All Rights Reserved

This site best viewed
with Internet Explorer


Home

How To

Brando

Ian Nottingham

Kenneth Irons

Jake McCarty

Danny Woo

Gabriel Bowman

Lazar

Conchobar

Dr. Immo

Father Del Torro

Sara Pezzini

Vicky Po

Joan D'Arc

Dominique Bourcher

Add the Countdown Clock to your site!

Suggestions, comments, etc....
New Episode Starts In Countdown Clock

(You can link directly to the Witchblade logo on my site or save it to your site. If you store it on your site, you need to change the logo address in the third part of this script to reflect where you store it on your site.)

(The Witchblade name and logo belong to their owners and not to me. No infringement is intended.)




1. Paste this code into the HEAD of your HTML document:

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
function getTime() {
now = new Date();
y2k = new Date("Jun 24 2002 21:00:00");
days = (y2k - now) / 1000 / 60 / 60 / 24;
daysRound = Math.floor(days);
hours = (y2k - now) / 1000 / 60 / 60 - (24 * daysRound);
hoursRound = Math.floor(hours);
minutes = (y2k - now) / 1000 /60 - (24 * 60 * daysRound) - (60 * hoursRound);
minutesRound = Math.floor(minutes);
seconds = (y2k - now) / 1000 - (24 * 60 * 60 * daysRound) - (60 * 60 * hoursRound) - (60 * minutesRound);
secondsRound = Math.round(seconds);
sec = (secondsRound == 1) ? " second." : " seconds.";
min = (minutesRound == 1) ? " minute, " : " minutes, ";
hr = (hoursRound == 1) ? " hour, " : " hours, ";
dy = (daysRound == 1) ? " day, " : " days, "
document.timeForm.input1.value = "New Episode Starts In " + daysRound + dy + hoursRound + hr + minutesRound + min + secondsRound + sec;
newtime = window.setTimeout("getTime();", 1000);
}
// End -->
</script>




2. Insert this into your BODY tag:

<BODY onLoad="getTime()">




3. Copy this code into the BODY of your HTML document where you want the clock to appear:

<center>
<IMG SRC="http://www.ianticipate.net/images/wblogo.jpg">
<form name=timeForm>
<input type=text name=input1 size=70 border-style="none" style="border-bottom: 0px solid; border-left: 0px solid;border-right: 0px solid;border-top: 0px solid;font:12px arial, helvetica,sans-serif">
</form>
</center>