1 |
6daefa8c
|
Petr Lukašík
|
/**
|
2 |
|
|
* Function for updating browser frame and topbar frame so that sqledit window
|
3 |
|
|
* pops up with properly selected database.
|
4 |
|
|
*
|
5 |
|
|
* $Id: links.js,v 1.4 2004/07/13 15:24:41 jollytoad Exp $
|
6 |
|
|
*/
|
7 |
|
|
function updateLinks(getVars) {
|
8 |
|
|
var topbarLink = 'topbar.php' + getVars;
|
9 |
|
|
var browserLink = 'browser.php' + getVars;
|
10 |
|
|
var detailLink = 'redirect.php' + getVars + 'section=database';
|
11 |
|
|
|
12 |
|
|
parent.frames.topbar.location = topbarLink;
|
13 |
|
|
parent.frames.detail.location = detailLink;
|
14 |
|
|
parent.frames.browser.location = browserLink;
|
15 |
|
|
}
|