home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2003 July
/
CMCD0703.ISO
/
Software
/
Freeware
/
Programare
/
bugzero
/
jsp
/
script
/
attachment.js
next >
Wrap
Text File
|
2003-02-01
|
615b
|
34 lines
<!-- Begin
function do_attachment(theForm, formId) {
theForm.action.value="attachment";
theForm.submit();
theForm.action.value="save";
return true;
}
function do_attach(theForm) {
theForm.action.value="attach";
theForm.submit();
return true;
}
function do_remove(theForm) {
theForm.action.value="remove";
theForm.submit();
return true;
}
function do_ok(theForm) {
theForm.action.value="ok";
theForm.submit();
return true;
}
function do_cancel(theForm) {
theForm.action.value="cancel";
theForm.submit();
return true;
}
// End -->