7 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
<script language="JavaScript">
function day() {
return;
}
function InsertDay(DayCode) {
var DayCode;
var newInsert;
newInsert = DayCode;
top.document.register.am.value=newInsert;
return;
}
</script>
top.document.register.am.value=newInsert;
top.document.posting.am.value=newInsert;
1
2
3
4
5
6
7
8
9
10
function InsertDay(form, DayCode) {
// var DayCode; wieso nochmal?
var newInsert;
newInsert = DayCode;
top.document.forms[form].am.value=newInsert;
return;
}
InsertDay("register", "heute");
InsertDay("posting", "heute");
7 Einträge, 1 Seite |