Added version 0.6.3 to the repository

This commit is contained in:
Josh Sherman 2010-02-14 11:40:14 -05:00
commit 80b07ae41e
42 changed files with 7550 additions and 0 deletions

13
include/javascript.js Normal file
View 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);
}