Sorry, als Anfänger drückt man sich mitunter etwas blöd aus.
Jedenfalls konnte ich nun installieren.Habe nun noch eine kleine Fehlermeldung,die lautet:
var win = null; function Gk_PopTart(mypage,myname,w,h,scroll) { LeftPosition = (screen.width) ? (screen.width-w)/2 : 0; TopPosition = (screen.height) ? (screen.height-h)/2 : 0; settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable=no'; win = window.open(mypage,myname,settings); }
Gelöst. Für die,die auch mal diesen Fehler haben:
in overall header.templ. vor </head> folgendes einfügen:
<SCRIPT LANGUAGE="Javascript">
var win = null;
function Gk_PopTart(mypage,myname,w,h,scroll)
{
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
win = window.open(mypage,myname,settings);
}
</SCRIPT>
So,und nun schau ich mal weiter