Project

General

Profile

Bug #14954 » bug LI source.htm

Administrator Admin, 2005-08-31 14:50

 
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<?xml version="1.0" encoding="iso-8859-1"?>

<html>
<head>
<!-- TYPO3 Script ID: typo3/alt_main.php -->
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta name="GENERATOR" content="TYPO3 3.8, http://typo3.com, &#169; Kasper Sk&#229;rh&#248;j 1998-2005, extensions are copyright of their respective owners." />
<title>Gymnase Intercantonal de la Broye [TYPO3 3.8.0]</title>
<link rel="stylesheet" type="text/css" href="stylesheet.css" />
<style type="text/css" id="internalStyle">
/*<![CDATA[*/
/*###POSTCSSMARKER###*/
/*]]>*/
</style>
<script type="text/javascript" src="md5.js"></script>
<script type="text/javascript" src="t3lib/jsfunc.evalfield.js"></script>
<script type="text/javascript">
/*<![CDATA[*/
/**
* Function similar to PHPs rawurlencode();
*/
function rawurlencode(str) { //
var output = escape(str);
output = str_replace("*","%2A", output);
output = str_replace("+","%2B", output);
output = str_replace("/","%2F", output);
output = str_replace("@","%40", output);
return output;
}

/**
* String-replace function
*/
function str_replace(match,replace,string) { //
var input = ""+string;
var matchStr = ""+match;
if (!matchStr) {return string;}
var output = "";
var pointer=0;
var pos = input.indexOf(matchStr);
while (pos!=-1) {
output+=""+input.substr(pointer, pos-pointer)+replace;
pointer=pos+matchStr.length;
pos = input.indexOf(match,pos+1);
}
output+=""+input.substr(pointer);
return output;
}

/**
* TypoSetup object.
*/
function typoSetup() { //
this.PATH_typo3 = "/projects/GYB/wwwroot/typo3/";
this.PATH_typo3_enc = "%2Fprojects%2FGYB%2Fwwwroot%2Ftypo3%2F";
this.username = "prossel";
this.uniqueID = "9b0e7c913b";
this.navFrameWidth = 0;
}
var TS = new typoSetup();

/**
* Functions for session-expiry detection:
*/
function busy() { //
this.loginRefreshed = busy_loginRefreshed;
this.checkLoginTimeout = busy_checkLoginTimeout;
this.openRefreshWindow = busy_OpenRefreshWindow;
this.busyloadTime=0;
this.openRefreshW=0;
}
function busy_loginRefreshed() { //
var date = new Date();
this.busyloadTime = Math.floor(date.getTime()/1000);
this.openRefreshW=0;
}
function busy_checkLoginTimeout() { //
var date = new Date();
var theTime = Math.floor(date.getTime()/1000);
if (theTime > this.busyloadTime+3600-10) {
return true;
}
}
function busy_OpenRefreshWindow() { //
vHWin=window.open("login_frameset.php","relogin_"+TS.uniqueID,"height=350,width=700,status=0,menubar=0,location=1");
vHWin.focus();
this.openRefreshW=1;
}
function busy_checkLoginTimeout_timer() { //

if (busy.checkLoginTimeout()) {
if (!busy.openRefreshW && confirm(String.fromCharCode(89,111,117,114,32,108,111,103,105,110,32,104,97,115,32,112,114,111,98,97,98,108,121,32,101,120,112,105,114,101,100,46,10,68,111,32,121,111,117,32,119,97,110,116,32,116,111,32,114,101,102,114,101,115,104,32,105,116,32,110,111,119,63))) {
busy.openRefreshWindow();
}
}
window.setTimeout("busy_checkLoginTimeout_timer();",2*1000); // Each 2nd second is enough for checking. The popup will be triggered 10 seconds before the login expires (see above, busy_checkLoginTimeout())

// Detecting the frameset module navigation frame widths (do this AFTER setting new timeout so that any errors in the code below does not prevent another time to be set!)
if (top && top.content && top.content.nav_frame && top.content.nav_frame.document && top.content.nav_frame.document.body) {
TS.navFrameWidth = (top.content.nav_frame.document.documentElement && top.content.nav_frame.document.documentElement.clientWidth) ? top.content.nav_frame.document.documentElement.clientWidth : top.content.nav_frame.document.body.clientWidth;
}
}

/**
* Launcing information window for records/files (fileref as "table" argument)
*/
function launchView(table,uid,bP) { //
var backPath= bP ? bP : "";
var thePreviewWindow="";
thePreviewWindow = window.open(TS.PATH_typo3+"show_item.php?table="+escape(table)+"&uid="+escape(uid),"ShowItem"+TS.uniqueID,"height=300,width=410,status=0,menubar=0,resizable=0,location=0,directories=0,scrollbars=1,toolbar=0");
if (thePreviewWindow && thePreviewWindow.focus) {
thePreviewWindow.focus();
}
}

/**
* Opens plain window with url
*/
function openUrlInWindow(url,windowName) { //
regularWindow = window.open(url,windowName,"status=1,menubar=1,resizable=1,location=1,directories=0,scrollbars=1,toolbar=1");
regularWindow.focus();
return false;
}

/**
* Loads a URL in the topmenuFrame
*/
function loadTopMenu(url) { //
top.topmenuFrame.location = url;
}

/**
* Loads a page id for editing in the page edit module:
*/
function loadEditId(id,addGetVars) { //
top.fsMod.recentIds["web"]=id;
top.fsMod.navFrameHighlightedID["web"]="pages"+id+"_0"; // For highlighting

if (top.content && top.content.nav_frame && top.content.nav_frame.refresh_nav) {
top.content.nav_frame.refresh_nav();
}

top.goToModule("web_txtemplavoilaM1", 0, addGetVars?addGetVars:"");
}

/**
* Returns incoming URL (to a module) unless nextLoadModuleUrl is set. If that is the case nextLoadModuleUrl is returned (and cleared)
* Used by the shortcut frame to set a "intermediate URL"
*/
var nextLoadModuleUrl="";
function getModuleUrl(inUrl) { //
var nMU;
if (top.nextLoadModuleUrl) {
nMU=top.nextLoadModuleUrl;
top.nextLoadModuleUrl="";
return nMU;
} else {
return inUrl;
}
}

/**
* Print properties of an object
*/
function debugObj(obj,name) { //
var acc;
for (i in obj) {
if (obj[i]) {
acc+=i+": "+obj[i]+"\n";
}
}
alert("Object: "+name+"\n\n"+acc);
}

/**
* Initialize login expiration warning object
*/
var busy = new busy();
busy.loginRefreshed();
busy_checkLoginTimeout_timer();


/**
* Highlight module:
*/
var currentlyHighLightedId = "";
var currentlyHighLighted_restoreValue = "";
var currentlyHighLightedMain = "";
function highlightModuleMenuItem(trId, mainModule) { //
currentlyHighLightedMain = mainModule;
// Get document object:
if (top.menu && top.menu.document) {
var docObj = top.menu.document;
var HLclass = mainModule ? "c-mainitem-HL" : "c-subitem-row-HL";
} else if (top.topmenuFrame && top.topmenuFrame.document) {
var docObj = top.topmenuFrame.document;
var HLclass = mainModule ? "c-mainitem-HL" : "c-subitem-HL";
}

if (docObj) {
// Reset old:
if (currentlyHighLightedId && docObj.getElementById(currentlyHighLightedId)) {
docObj.getElementById(currentlyHighLightedId).attributes.getNamedItem("class").nodeValue = currentlyHighLighted_restoreValue;
}
// Set new:
currentlyHighLightedId = trId;
if (currentlyHighLightedId && docObj.getElementById(currentlyHighLightedId)) {
var classAttribObject = docObj.getElementById(currentlyHighLightedId).attributes.getNamedItem("class");
currentlyHighLighted_restoreValue = classAttribObject.nodeValue;
classAttribObject.nodeValue = HLclass;
}
}
}

/**
* Function restoring previous selection in left menu after clearing cache
*/
function restoreHighlightedModuleMenuItem() {
if (currentlyHighLightedId) {
highlightModuleMenuItem(currentlyHighLightedId,currentlyHighLightedMain);
}
}

/**
* Function used to switch switch module.
*/
var currentModuleLoaded = "";
function goToModule(modName,cMR_flag,addGetVars) { //
var additionalGetVariables = "";
if (addGetVars) additionalGetVariables = addGetVars;

var cMR = 0;
if (cMR_flag) cMR = 1;

currentModuleLoaded = modName;

switch(modName) {
case 'web_txtemplavoilaM1':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="../typo3conf/ext/templavoila/mod1/index.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"../typo3conf/ext/templavoila/mod1/index.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=..%2Ftypo3conf%2Fext%2Ftemplavoila%2Fmod1%2Findex.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=..%2Ftypo3conf%2Fext%2Ftemplavoila%2Fmod1%2Findex.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="../typo3conf/ext/templavoila/mod1/index.php";
}
top.highlightModuleMenuItem("ID_60519821");
break;
case 'web_view':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="sysext/viewpage/view/frameset.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"sysext/viewpage/view/frameset.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=sysext%2Fviewpage%2Fview%2Fframeset.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=sysext%2Fviewpage%2Fview%2Fframeset.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="sysext/viewpage/view/frameset.php";
}
top.highlightModuleMenuItem("ID_134604484");
break;
case 'web_list':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="db_list.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"db_list.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=db_list.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=db_list.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="db_list.php";
}
top.highlightModuleMenuItem("ID_57081972");
break;
case 'web_info':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="mod/web/info/index.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"mod/web/info/index.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=mod%2Fweb%2Finfo%2Findex.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=mod%2Fweb%2Finfo%2Findex.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="mod/web/info/index.php";
}
top.highlightModuleMenuItem("ID_213802631");
break;
case 'web_perm':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="mod/web/perm/index.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"mod/web/perm/index.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=mod%2Fweb%2Fperm%2Findex.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=mod%2Fweb%2Fperm%2Findex.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="mod/web/perm/index.php";
}
top.highlightModuleMenuItem("ID_60938951");
break;
case 'web_func':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="mod/web/func/index.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"mod/web/func/index.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=mod%2Fweb%2Ffunc%2Findex.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=mod%2Fweb%2Ffunc%2Findex.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="mod/web/func/index.php";
}
top.highlightModuleMenuItem("ID_242172889");
break;
case 'web_ts':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="ext/tstemplate/ts/index.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"ext/tstemplate/ts/index.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=ext%2Ftstemplate%2Fts%2Findex.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=ext%2Ftstemplate%2Fts%2Findex.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="ext/tstemplate/ts/index.php";
}
top.highlightModuleMenuItem("ID_114100085");
break;
case 'web_txtemplavoilaM2':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="web") {
top.currentSubScript="../typo3conf/ext/templavoila/mod2/index.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"../typo3conf/ext/templavoila/mod2/index.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_db_navframe.php?") {
top.currentSubNavScript="alt_db_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_db_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=..%2Ftypo3conf%2Fext%2Ftemplavoila%2Fmod2%2Findex.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_db_navframe.php%3F&script=..%2Ftypo3conf%2Fext%2Ftemplavoila%2Fmod2%2Findex.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['web'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="web";
top.currentSubScript="../typo3conf/ext/templavoila/mod2/index.php";
}
top.highlightModuleMenuItem("ID_198601614");
break;
case 'file_list':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="file") {
top.currentSubScript="file_list.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"file_list.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['file'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_file_navframe.php?") {
top.currentSubNavScript="alt_file_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_file_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_file_navframe.php%3F&script=file_list.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_file_navframe.php%3F&script=file_list.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['file'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="file";
top.currentSubScript="file_list.php";
}
top.highlightModuleMenuItem("ID_21254424");
break;
case 'file_images':
if (top.content.list_frame && top.fsMod.currentMainLoaded=="file") {
top.currentSubScript="ext/imagelist/mod/index.php";
top.content.list_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"ext/imagelist/mod/index.php?"+'&id='+top.rawurlencode(top.fsMod.recentIds['file'])+additionalGetVariables);
if(top.currentSubNavScript!="alt_file_navframe.php?") {
top.currentSubNavScript="alt_file_navframe.php?";
top.content.nav_frame.location=top.getModuleUrl(top.TS.PATH_typo3+"alt_file_navframe.php?");
}
} else {
top.content.location=top.TS.PATH_typo3+(
top.nextLoadModuleUrl?
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_file_navframe.php%3F&script=ext%2Fimagelist%2Fmod%2Findex.php&exScript=listframe_loader.php":
"alt_mod_frameset.php?fW="+top.TS.navFrameWidth+"&nav="+top.TS.PATH_typo3+"alt_file_navframe.php%3F&script=ext%2Fimagelist%2Fmod%2Findex.php"+'&id='+top.rawurlencode(top.fsMod.recentIds['file'])+additionalGetVariables
);
top.fsMod.currentMainLoaded="file";
top.currentSubScript="ext/imagelist/mod/index.php";
}
top.highlightModuleMenuItem("ID_125689166");
break;
case 'doc':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'alt_doc.php?'+additionalGetVariables);
top.highlightModuleMenuItem("ID_161520461",1);
break;
case 'user_task':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'sysext/taskcenter/task/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="user";
top.highlightModuleMenuItem("ID_46573444");
break;
case 'user_setup':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'sysext/setup/mod/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="user";
top.highlightModuleMenuItem("ID_199262950");
break;
case 'tools_beuser':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'sysext/beuser/mod/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_41279860");
break;
case 'tools_em':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'mod/tools/em/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_147308370");
break;
case 'tools_dbint':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'sysext/lowlevel/dbint/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_103095143");
break;
case 'tools_config':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'sysext/lowlevel/config/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_104426523");
break;
case 'tools_install':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'install/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_60425410");
break;
case 'tools_log':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'sysext/belog/mod/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_89266796");
break;
case 'tools_txphpmyadmin':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'ext/phpmyadmin/modsub/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_175015571");
break;
case 'tools_txtemplavoilaM3':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'../typo3conf/ext/templavoila/mod3/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_227877051");
break;
case 'tools_txccawstatsM1':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'../typo3conf/ext/cc_awstats/mod1/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="tools";
top.highlightModuleMenuItem("ID_47014255");
break;
case 'help_aboutmodules':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'alt_intro.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="help";
top.highlightModuleMenuItem("ID_226369394");
break;
case 'help_about':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'mod/help/about/index.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="help";
top.highlightModuleMenuItem("ID_29141543");
break;
case 'help_cshmanual':
top.content.location=top.getModuleUrl(top.TS.PATH_typo3+'view_help.php?'+additionalGetVariables);
top.fsMod.currentMainLoaded="help";
top.highlightModuleMenuItem("ID_170817826");
break;

}
}

/**
* Frameset Module object
*
* Used in main modules with a frameset for submodules to keep the ID between modules
* Typically that is set by something like this in a Web>* sub module:
* if (top.fsMod) top.fsMod.recentIds["web"] = "'.intval($this->id).'";
* if (top.fsMod) top.fsMod.recentIds["file"] = "...(file reference/string)...";
*/
function fsModules() { //
this.recentIds=new Array(); // used by frameset modules to track the most recent used id for list frame.
this.navFrameHighlightedID=new Array(); // used by navigation frames to track which row id was highlighted last time
this.currentMainLoaded="";
}
var fsMod = new fsModules();
fsMod.recentIds["web"]="";
fsMod.recentIds["file"]="";

// Used by Frameset Modules
var condensedMode = 0;
var currentSubScript = "";
var currentSubNavScript = "";

// Used for tab-panels:
var DTM_currentTabs = new Array();
/*]]>*/
</script>
<!--###POSTJSMARKER###-->
</head>

<frameset rows="32,*,30" framespacing="0" frameborder="0" border="0">
<frameset cols="130,*" framespacing="0" frameborder="0" border="0">
<frame name="toplogo" src="alt_toplogo.php" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" noresize="noresize" />
<frame name="topmenuFrame" src="alt_topmenu_dummy.php" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" noresize="noresize" />
</frameset>
<frameset cols="130,*" framespacing="0" frameborder="0" border="0">
<frame name="menu" src="alt_menu.php" marginwidth="0" marginheight="0" scrolling="auto" noresize="noresize" />
<frame name="content" src="alt_intro.php" marginwidth="0" marginheight="0" frameborder="0" scrolling="auto" noresize="noresize" />
</frameset>
<frame name="shortcutFrame" src="alt_shortcut.php" marginwidth="0" marginheight="0" frameborder="0" scrolling="no" noresize="noresize" />
</frameset>

</html>
(1-1/3)