<form name=PRIMO ACTION= "modifica_processo1.asp" METHOD=POST>
<CENTER><input type="submit" name="Submit" value="SALVA">[/b]</div>
<STYLE type="text/css">
</STYLE>
</CENTER>
<HTML>
<STYLE TYPE="text/css">
#clock {color:blue; font-size:120%} /* Format the clock. */
</STYLE>
<SCRIPT LANGUAGE="JavaScript">
// Check whether IE4 or later.
var MS = navigator.appVersion.indexOf("MSIE");
window.isIE4 = (MS > 0) &&
(parseInt(navigator.appVersion.substring(MS + 5, MS + 6))
>= 4);
function lead0(val) {
// Add leading 0s when necessary.
return (val < 10) ? "0" + val.toString() : val;
}
function buildTime() {
var time = new Date();
var ampm = "AM";
var h = time.getHours();
// Fix military time and determine ampm.
if (h > 24) {
h = h - 12;
ampm = " PM";
}
return lead0(h) + ":" + lead0(time.getMinutes()) + ":" +
lead0(time.getSeconds());
}
function tick() {
// Replace the clock's time with the current time.
document.all.clock.innerText = buildTime();
}
</SCRIPT></HEAD></body></html>
<script language=JavaScript>
function dayTime() {
day = new Date();
hour = day.getHours();
minute = day.getMinutes();
second = day.getSeconds();
if (hour > 12) {
hours = hour - 12;
part = 'PM'}
else {
part = 'AM';
if (hour == 0) {
hours = 12
}
else {
hours = hour
}
}
if (minute < 10) {minutes = 0}
else {minutes = ""}
if (second < 10) {seconds = 0}
else {seconds =""}
date = ('' +(day.getMonth() + 1)+"/"+day.getDate()+ "/"+day.getYear()+ '');
time = ('' + hours + ":"+minutes+""+minute+ ":"+seconds+""+second+ '')
parts = ('' +part+ '')
document.timedate.time.value = time
document.timedate.date.value = date
watchID = setTimeout("dayTime()",1000)
watchRun = true
}
function passText2() {
var num1 = document.pass2.hid.value;
if(num1 == 'three') {
}
else {
document.pass2.one.value = (buildTime())
}
}
</script>
<TD WIDTH=100>
<form name=pass2>
<TABLE BORDER=1 WIDTH=300>
<TD WIDTH=100>
<input type=button value="ORARIO FINE FOLLOW UP" onClick="passText2(),this.disabled=true;" >
<input type=hidden name=hid>
<TD WIDTH=100>
<input type=text name=one SIZE=8 READONLY></TD>
</TD></TABLE>
</TD>