HO UN OROLOGIO IN JS COSI':
function orologio(){
d=new Date();
weekday = d.getDay();
if (weekday == 0) print1='domenica';
if (weekday == 1) print1='lunedi';
if (weekday == 2) print1='martedi';
if (weekday == 3) print1='mercoledi';
if (weekday == 4) print1='giovedi';
if (weekday == 5) print1='venerdi';
if (weekday == 6) print1='sabato';
month = d.getMonth();
if (month == 0) print2='gennaio';
if (month == 1) print2='febbraio';
if (month == 2) print2='marzo';
if (month == 3) print2='aprile';
if (month == 4) print2='maggio';
if (month == 5) print2='giugno';
if (month == 6) print2='luglio';
if (month == 7) print2='agosto';
if (month == 8) print2='settembre';
if (month == 9) print2='ottobre';
if (month == 10) print2='novembre';
if (month == 11) print2='dicembre';
date = d.getDate();
year = d.getYear();
h=" "+d.getHours();
m=""+d.getMinutes();
s=""+d.getSeconds();
if (h.length==1) h="0"+h;
if (m.length==1) m="0"+m;
if (s.length==1) s="0"+s;
ora=print1+", "+date+" "+print2+" "+year+" ore "+h+":"+m+":"+s;
var id=setTimeout("orologio()",500);
document.all.orologio.innerHTML=ora;
<body bgcolor="#000066" onload="newsChange() ; orologio();"" text="#FFFFFF" font-weight:bold>
<table width="600" border="0" cellspacing="0" cellpadding="0" align="center">
<tr>
<td width="332">
<script language="JavaScript">
document.write("<div id='orologio'>_</div>")
</script>
VORREI SAPERE COME FACCIO A SETTARE LA GRANDEZZA DEL FONT, PER ES. SIZE=2 DOVE LO VADO A METTERE?