<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
var now = new Date();
var then = new Date("July 4, 1998");
var gap = then.getTime() - now.getTime();
gap = Math.floor(gap / (1000 * 60 * 60 * 24));
document.write("Only " + gap + " days \'till the fourth of July");
</SCRIPT>
</HEAD>
</HTML>