[511] | 1 | function webPath() {
|
---|
| 2 | var mypath = "";
|
---|
| 3 | var pathbits = window.location.pathname.split( '/' );
|
---|
| 4 | for ( i = 0; i <= pathbits.length-2; i++ ) {
|
---|
[514] | 5 | if (pathbits[i] != 'cgi-bin') {
|
---|
| 6 | mypath += pathbits[i];
|
---|
| 7 | mypath += "/";
|
---|
| 8 | }
|
---|
[511] | 9 | }
|
---|
| 10 | return mypath;
|
---|
| 11 | }
|
---|
| 12 |
|
---|
[451] | 13 | function openHelp() {
|
---|
[511] | 14 | window.open(webPath() + "help.html", "help_window", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=700,height=400")
|
---|
[451] | 15 | }
|
---|
| 16 | function openTables() {
|
---|
[511] | 17 | window.open(webPath() + "tables.html", "subnet_tables", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=250")
|
---|
[451] | 18 | }
|
---|
| 19 | function helpAllocTypes() {
|
---|
[511] | 20 | window.open(webPath() + "alloctypes.html", "alloc_window", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=750,height=550")
|
---|
[451] | 21 | }
|
---|
| 22 | function popNotes(page) {
|
---|
| 23 | window.open(page, "IPDB_notes", "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=400,height=300");
|
---|
| 24 | }
|
---|
[459] | 25 | function redoParent() {
|
---|
| 26 | opener.location.reload(true);
|
---|
| 27 | }
|
---|