/* * fLayer DTML JavaScript Library * Copyright (C) 2001-2003 tow ] Werbeagentur GmbH * * All rights reserved. * * Version 1.2.0 * * Note to those hackers out there ;) * The following JavaScript is browser specific * and has been generated with PHP * * Supported Browsers in this version: * * - Netscape 4.x (partly) * - Mozilla ( Netscape 6+, Chimera, Beonox, Galeon, ... ) * - Internet Explorer 4,5,6 * - Opera 5+ * * Detected: * OS: unknown * Browser: unkown * Version: unkown * */ function fBrowser() { this.plattform = "unknown"; this.browser = "unkown"; this.version = "unkown"; } function fLayer(Name) { this.divName = Name; this.visible = false; this.show = fLayer_show; this.hide = fLayer_hide; this.write = fLayer_write; this.move = fLayer_move; this.moveX = fLayer_moveX; this.moveY = fLayer_moveY; this.init = fLayer_init; this.center= fLayer_center; this.getX = fLayer_getx; this.getY = fLayer_gety; this.init(); }