//##################################################################//
//																	//
// various javascript class definitions for the dynamic HTML
//																	//
//##################################################################//

//////////////////////////////////////////////////////////////////////
//
// define the Browser class 
//
// modified by Alex Szalay, 07/07/2001
//
//////////////////////////////////////////////////////////////////////

function Browser() {
	var agent	= navigator.userAgent.toLowerCase();
	this.DOM	= (document.getElementById) ? true : false;
	this.NS4	= (document.layers) ? true : false;
	this.NS6	= (navigator.vendor == ("Netscape6") || navigator.product == ("Gecko"));
	this.IE		= (document.all) ? true : false;
	this.IE4	= this.IE && !this.DOM;
	this.MAC	= (navigator.appVersion.indexOf("Mac") != -1);
	this.IE4M	= this.IE4 && this.MAC;
	this.type	= this.NS4 ? "NS4" : (this.DOM ? "DOM" : "IE4");
}

// instantiate the class, needed below

var is = new Browser();

// alert("NS4:"+is.NS4+"\nNS6:"+is.NS6+"\nIE :"+is.IE+"\n");



//////////////////////////////////////////////////////////////////////
//
// define the Div class 
//
// original code from Flanagan
// modified by Alex Szalay, 04/21/2001
//
//////////////////////////////////////////////////////////////////////

function Div(id,left,top) {
	this.window = window;
    this.id = id;
    this.pmt = new Object();
	this.pmt.left = left;
	this.pmt.top  = top;
	this.initialize();
	this.moveTo(left,top);
}

//==============//
//  Netscape 4	//
//==============//
if (is.NS4) {        
	// Here are methods for moving, hiding, stacking, and manipulating
	Div.prototype.initialize = function() {this.layer = this.window.document[this.id];}
	Div.prototype.moveTo = function(x,y) { this.layer.moveTo(x,y);}
	Div.prototype.moveBy = function(x,y) { this.layer.moveBy(x,y);}
	Div.prototype.getElement = function(id) {return this.layer.document[id];}
	Div.prototype.show	 = function() { this.layer.visibility = "show";}
	Div.prototype.hide	 = function() { this.layer.visibility = "hide";}
	Div.prototype.setZIndex  = function(z) { this.layer.zIndex = z;}
	Div.prototype.setBgColor = function(color) { this.layer.bgColor = color;}
	Div.prototype.setBgImage = function(image) { this.layer.background.src = image;}
	Div.prototype.setClip = function(l,t,r,b) {
		this.layer.clip.left	= l;
		this.layer.clip.top		= t;
		this.layer.clip.right	= r;
		this.layer.clip.bottom	= b;
	}
  
	// These methods query the position, size, and other properties
	Div.prototype.getX = function() { return this.layer.left;}
	Div.prototype.getY = function() { return this.layer.right;}
	Div.prototype.getWidth = function() { return this.layer.width;}
	Div.prototype.getHeight = function() { return this.layer.height;}
	Div.prototype.getZIndex = function() { return this.layer.zIndex;}
	Div.prototype.isVisible = function() { return this.layer.visibility == "show";}
  
	Div.prototype.setBody = function() {
		for(var i = 0; i < arguments.length; i++)
			this.layer.document.writeln(arguments[i]);
		this.layer.document.close();
	}
  
	Div.prototype.addEventHandler = function(eventname, handler) {
		this.layer.captureEvents(Div._eventmasks[eventname]);
		var dynel = this;
		this.layer[eventname] = function(event) { 
			//--------------------------------------------
			// return the page coordinates of the event (Alex Szalay)
			//--------------------------------------------
			return handler(dynel, event.type, event.pageX, event.pageY,
				event.screenX, event.screenY,
				event.which, event.which,
				((event.modifiers & Event.SHIFT_MASK) != 0),
				((event.modifiers & Event.CTRL_MASK) != 0),
				((event.modifiers & Event.ALT_MASK) != 0));
			}
		}
  
	Div.prototype.removeEventHandler = function(eventname) {
		this.layer.releaseEvents(Div._eventmasks[eventname]);
	    delete this.layer[eventname];
		}
  
	Div._eventmasks = {
		onabort:Event.ABORT, onblur:Event.BLUR, onchange:Event.CHANGE,
		onclick:Event.CLICK, ondblclick:Event.DBLCLICK, 
		ondragdrop:Event.DRAGDROP, onerror:Event.ERROR, 
		onfocus:Event.FOCUS, onkeydown:Event.KEYDOWN,
		onkeypress:Event.KEYPRESS, onkeyup:Event.KEYUP, onload:Event.LOAD,
		onmousedown:Event.MOUSEDOWN, onmousemove:Event.MOUSEMOVE, 
		onmouseout:Event.MOUSEOUT, onmouseover:Event.MOUSEOVER, 
		onmouseup:Event.MOUSEUP, onmove:Event.MOVE, onreset:Event.RESET,
		onresize:Event.RESIZE, onselect:Event.SELECT, onsubmit:Event.SUBMIT,
		onunload:Event.UNLOAD 
		};
}


//==============//
//  Netscape 6	//
//==============//
if (is.NS6) {
	// Methods to move the dynamic object
	Div.prototype.initialize = function() {
		this.element = this.window.document.getElementById(this.id);
		this.style = this.element.style;
	}
	Div.prototype.moveTo = function(x,y) {
		this.style.left = x + "px";
		this.style.top  = y + "px";
	}
	Div.prototype.moveBy = function(x,y) {
		this.style.left = (parseInt(this.style.left) + x) + "px";
		this.style.top  = (parseInt(this.style.top)  + y) + "px";
	}
	Div.prototype.getElement = function(id) {
		return this.window.document.getElementById(id)
	}

	// Methods to set other attributes of the dynamic object
	Div.prototype.show = function() { this.style.visibility = "visible"; }
	Div.prototype.hide = function() { this.style.visibility = "hidden"; }
	Div.prototype.setZIndex  = function(z) { this.style.zIndex = z; }
	Div.prototype.setBgColor = function(color) { this.style.backgroundColor = color; }
	Div.prototype.setBgImage = function(image) { this.style.backgroundImage = image; }
	Div.prototype.setClip = function(l,t,r,b) {
		this.style.clip = "rect("+t+" "+r+" "+b+" "+l+")";
	}
	// Methods to query the dynamic object
	Div.prototype.getX = function() {return parseInt(this.style.left);}
	Div.prototype.getY = function() {return parseInt(this.style.top);}
	Div.prototype.getWidth = function() {return this.style.width;}
	Div.prototype.getHeight = function() {return this.style.height;}
	Div.prototype.getZIndex = function() {return this.style.zIndex;}
	Div.prototype.isVisible = function() {return this.style.visibility=="visible";}
  
	// Change the contents of the dynamic element.
	Div.prototype.setBody = function() {
		var body = "";
	    for(var i = 0; i < arguments.length; i++) {body += arguments[i]+"\n";}
		this.element.innerHTML = body;
	}
  
	// Define an event handler.
	Div.prototype.addEventHandler = function(eventname, handler) {
		var dynel = this;  // Current DynEl for use in the nested function
		this.element[eventname] = function(event) { 
			//--------------------------------------------
			// return also the page coordinates of the event
			//--------------------------------------------
			return handler(dynel, event.type, event.pageX, event.pageY,
				event.screenX, event.screenY);
			}
	}
  
	// Remove an event handler.
	Div.prototype.removeEventHandler = function(eventname) {
	    delete this.element[eventname];
	}

}

//==============//
//  IE 4+		//
//==============//
if (is.IE) {
	// Methods to move the dynamic object
	Div.prototype.initialize = function() {
		this.element = this.window.document.all[this.id];
		this.style = this.element.style;
	}
	Div.prototype.moveTo = function(x,y) {
		this.style.pixelLeft = x;
		this.style.pixelTop = y;
	}
	Div.prototype.moveBy = function(x,y) {
		this.style.pixelLeft += x;
		this.style.pixelTop += y;
	}
	Div.prototype.getElement = function(id) {return document.all[id];}
	
	// Methods to set other attributes of the dynamic object
	Div.prototype.show = function() { this.style.visibility = "visible"; }
	Div.prototype.hide = function() { this.style.visibility = "hidden"; }
	Div.prototype.setZIndex  = function(z) { this.style.zIndex = z; }
	Div.prototype.setBgColor = function(color) { this.style.backgroundColor = color; }
	Div.prototype.setBgImage = function(image) { this.style.backgroundImage = image; }
	Div.prototype.setClip = function(l,t,r,b) {
		this.style.clip = "rect("+t+" "+r+" "+b+" "+l+")";
	}
	// Methods to query the dynamic object
	Div.prototype.getX = function() {return this.style.pixelLeft;}
	Div.prototype.getY = function() {return this.style.pixelRight;}
	Div.prototype.getWidth = function() {return this.style.width;}
	Div.prototype.getHeight = function() {return this.style.height;}
	Div.prototype.getZIndex = function() {return this.style.zIndex;}
	Div.prototype.isVisible = function() {return this.style.visibility=="visible";}
  
	// Change the contents of the dynamic element.
	Div.prototype.setBody = function() {
		var body = "";
	    for(var i = 0; i < arguments.length; i++) {body += arguments[i]+"\n";}
		this.element.innerHTML = body;
	}
  
	// Define an event handler.
	Div.prototype.addEventHandler = function(eventname, handler) {
		var dynel = this;  // Current DynEl for use in the nested function
	    // Set an IE4 event handler that invokes the specified handler
		// with the appropriate nine arguments.
		this.element[eventname] = function() { 
			var e = dynel.window.event;
			e.cancelBubble = true;
			//--------------------------------------------
			// return the page coordinates of the event, 
			// corrected for the scrollbars (Alex Szalay)
			//--------------------------------------------
			var x = e.clientX + document.body.scrollLeft -2;
			var y = e.clientY + document.body.scrollTop -2;
			return handler(dynel, e.type, x, y, e.screenX, e.screenY,
				e.button, e.keyCode, e.shiftKey, e.ctrlKey, e.altKey); 
		}
	}
  
	// Remove an event handler.
	Div.prototype.removeEventHandler = function(eventname) {
	    delete this.element[eventname];
	}
}

/////////////////////////////////////////////////////////////////////
//
// define the Img class 
//
// written by Alex Szalay 01/06/2002
//
/////////////////////////////////////////////////////////////////////

function Img(o) {
	this.o = o;
}

if (is.NS4) {        
	Img.prototype.getWidth = function() {
		//debugobj(this.o);
		return this.o.width;
	}
	Img.prototype.getHeight = function() {
		return this.o.height;
	}
	Img.prototype.setSrc = function(s) {
		this.o.src = s;
	}
}

if (is.NS6) {        
	Img.prototype.getWidth = function() {
		return this.o.width;
	}
	Img.prototype.getHeight = function() {
		return this.o.height;
	}
	Img.prototype.setSrc = function(s) {
		this.o.src = s;
	}
}

if (is.IE) {        
	Img.prototype.getWidth = function() {
		return this.o.offsetWidth;
	}
	Img.prototype.getHeight = function() {
		return this.o.offsetHeight;
	}
	Img.prototype.setSrc = function(s) {
		this.o.src = s;
	}
}

/////////////////////////////////////////////////////////////////////
//
// define the ClickImg class 
//
// written by Alex Szalay 04/21/2001
//
/////////////////////////////////////////////////////////////////////

function ClickImg(id,left,top) {
    this.id   = id;
    this.pmt  = new Object();
	this.tree = new Object();
	this.pmt.left = left;
	this.pmt.top  = top;
}

ClickImg.prototype.addNode = function(name,x,y,m) {
	var left = this.pmt.left;
	var top  = this.pmt.top;
	if (x) left = x;
	if (y) top  = y;	
	eval('this.tree.'+name+'= new Div("'+name+'",'+left+','+top+');');
	eval('this.tree.'+name+'.movable = true;');
	if (m) {eval('this.tree.'+name+'.movable = false;');}
}

ClickImg.prototype.addEventHandler = function(eventname, handler) {
	for (var i in this.tree) {
		eval("this.tree['"+i+"'].addEventHandler('"+eventname+
			"', function(d,t,x,y,sx,sy) {"+handler+"(d,t,x,y,sx,sy);} );" );
	}
}

ClickImg.prototype.setZIndex = function(z) {
	for (var i in this.tree) {
		eval("this.tree['"+i+"'].setZIndex("+z+");");
	}
}

ClickImg.prototype.moveBy = function(x,y) {
	for (var i in this.tree) {
		var movable = eval("this.tree['"+i+"'].movable;");
		if (movable)
			eval("this.tree['"+i+"'].moveBy("+x+","+y+");");
	}
}

ClickImg.prototype.show = function() {
	for (var i in this.tree) {
			eval("this.tree['"+i+"'].show();");
	}
}

ClickImg.prototype.hide = function() {
	for (var i in this.tree) {
			eval("this.tree['"+i+"'].hide();");
	}
}

ClickImg.prototype.shiftBy = function(x,y) {
	var rx = x;
	var ry = y;
	var dx = this.pmt.clipleft + this.pmt.clipwidth - this.pmt.width;
	var dy = this.pmt.cliptop + this.pmt.clipheight - this.pmt.height;
	// check against the boundaries	
	if (rx>this.pmt.clipleft) { rx = this.pmt.clipleft; }
	if (ry>this.pmt.cliptop)  { ry = this.pmt.cliptop; }
	if (rx<dx) { rx = dx; }
	if (ry<dy) { ry = dy; }
	// update the clip coords
	this.pmt.clipleft -= rx;
	this.pmt.cliptop  -= ry;
	var img = eval("this.tree['"+this.id+"']");
	img.setClip(this.pmt.clipleft,this.pmt.cliptop,
		this.pmt.clipleft+this.pmt.clipwidth,
		this.pmt.cliptop+this.pmt.clipheight);
	this.moveBy(rx,ry);
}


