diff client/digitallibrary/baselib.js @ 315:d7f0045384f5

big autumn cleaning :-) - finally digilib.jsp uses the new javascript code - dito digicat.jsp - all files corresponding to the old frontend moved into /oldskin - all icons moved into /img
author robcast
date Thu, 28 Oct 2004 22:25:59 +0200
parents 4caec1a85233
children 4074c0138cf0
line wrap: on
line diff
--- a/client/digitallibrary/baselib.js	Thu Oct 28 22:25:58 2004 +0200
+++ b/client/digitallibrary/baselib.js	Thu Oct 28 22:25:59 2004 +0200
@@ -17,16 +17,10 @@
 Authors: 
   Christian Luginbuehl, 01.05.2003 (first version)
   DW 24.03.2004 (Changed for digiLib in Zope)
-  Robert Casties, 03.08.2004
+  Robert Casties, 27.10.2004
 
 */
 
-function identify() {
-	// used for identifying a digilib instance
-	// Relato uses that function - lugi
-	return "Digilib 0.6";
-}
-
 function getInt(n) {
     // returns always an integer
     n = parseInt(n);
@@ -579,8 +573,8 @@
     return wsize;
 }
 
-function openWin(url, title, params) {
+function openWin(url, name, params) {
     // open browser window
-    var ow = window.open(url, title, params);
+    var ow = window.open(url, name, params);
     ow.focus();
 }