* Function for updating browser frame and topbar frame so that sqledit window
* pops up with properly selected database.
*
- * $Id: links.js,v 1.1 2003/12/15 07:59:22 chriskl Exp $
+ * $Id: links.js,v 1.2 2003/12/15 08:14:10 chriskl Exp $
*/
function updateLinks(getVars) {
- var topbarLink = 'topbar.php' + getVars
- var browserLink = 'browser.php' + getVars
+ var topbarLink = 'topbar.php' + getVars;
+ var browserLink = 'browser.php' + getVars;
+ var detailLink = 'database.php' + getVars;
parent.frames.topbar.location = topbarLink;
parent.frames.browser.location = browserLink;
+ parent.frames.detail.location = detailLink;
}