var w3c = document.getElementById?1:0;
var ie4 = (document.all && !w3c)?1:0;
var ns4 = (document.layers && !w3c)?1:0;

function mover(m) {
   	document.images["line"+ m].src = eval("line"+ m +"_on.src");
}

function mout(m) {
	document.images["line"+ m].src = eval("line"+ m +".src");
}

function constructObject(obj,nest){
    nest=(!nest) ? '':'document.'+nest+'.' 
	this.el=w3c?document.getElementById(obj):ie4?document.all[obj]:ns4?eval(nest+'document.'+obj):0; 
  	this.css=w3c?document.getElementById(obj).style:ie4?document.all[obj].style:ns4?eval(nest+'document.'+obj):0;
	this.moveIt=b_moveIt; this.x; this.y; 
    this.obj = obj + "Object";
    eval(this.obj + "=this") 
    return this 
} 

function b_moveIt(x,y){ 
	this.x=x;this.y=y 
	this.css.left=this.x 
	this.css.top=this.y 
} 

var objContainer;
function initMenu(){ 
	objContainer=new constructObject('divASContainer') 
	objContainer.moveIt(0,0)
	objContainer.css.visibility='visible' 
}

function openWindow(theURL, winName, features) {
	window.open(theURL, winName, features + ",resizable=no,scrollbars=no,status=no,titlebar=no,toolbar=no,menubar=no,location=no");
	}

  