אני לא כל כך מבינה בזה אבל
מה שאת אמורה להעתיק זה את זה:
<SCRIPT LANGUAGE="JavaScript"> <!-- Begin var date = new Date("December 17, 2003"); var description = " "; var now = new Date(); var diff = date.getTime() - now.getTime(); var days = Math.floor(diff / (1000 * 60 * 60 * 24)); document.write("<center><h7>") if (days > 1) { document.write(days+1 + " days until ROTK! " + description); } else if (days == 1) { document.write("Only two days until ROTK! " + description); } else if (days == 0) { document.write("ROTK is released tomorrow! " + description); } else { document.write("The Return of the King is here!" + description + "!"); } document.write("</h7></center>"); // End --> </script>