Added version 0.6.3 to the repository
This commit is contained in:
commit
80b07ae41e
42 changed files with 7550 additions and 0 deletions
13
include/javascript.js
Normal file
13
include/javascript.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
function
|
||||
PopUp(url, height, width)
|
||||
{
|
||||
open(url, "pop-up", "height=" + height + ",width=" + width + ",scrollbars=yes");
|
||||
}
|
||||
|
||||
function
|
||||
Confirm(question)
|
||||
{
|
||||
temp = window.confirm(question);
|
||||
window.status=(temp)?'confirm: true':'confirm: false';
|
||||
return(temp);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue