Я в пыхе не шарю. Хотел часы поставить. Вот нашел. Скажите можно это ставить или нет.
<html>
<head>
<meta http-equiv="Content-Type"
content="text/html; charset=windows-1251">
<meta name="GENERATOR" content="Microsoft FrontPage Express 2.0">
<title>Часы в форме</title>
</head>
<body bgcolor="#FFFFFF" text="#000000"
onload="start(document.forms[0])" onunload="cleartids()">
<script language="LiveScript">
function GoBack() {
if (confirm("Are you sure you want to go to the previous page?")) {
history.back()
}
}
timestr = "00:00:00";
tid = 0;
pause = 0;
var to;
var bcount;
var tcount;
function writer(){
document.write("test");
}
function time(n) {
tid=window.setTimeout("time(1)",to);
today = new Date()
if(today.getMinutes() < 10){
pad = "0"}
else
pad = "";
if(today.getSeconds() < 10){
pads = "0"}
else
pads = "";
timestr=today.getHours()+":"+pad+today.getMinutes()+":"+pads+today.getSeconds();
f.result.value = timestr;
window.status = timestr;
window.clearTimeout(tid);
tid=window.setTimeout("time()",to);
}
function start(x) {
f=x;
to=60;
time(x);
}
function cleartids() {
window.clearTimeout(tid);
}
</script>
<form name="time">
<p align="center"><input type="text" size="8" name="result"
onfocus="this.blur()"
style="text-align: center; font-family: sans-serif; font-size: 8pt; background-color: rgb(255,255,0); color: rgb(255,0,0)"></p>
</form>
</body>
</html>