function startmarknodes() {
	//alert(document.getElementById("content"));
	marknodes(document.getElementById("content"));
	}

function marknodes(n) {
	var s,t,ret,ename,el,els,marked;
	//alert("oko");
	//alert(n.nodeType=="undefined");
	if(n.nodeType) if(n.nodeType==1) {
		ename=n.getAttribute("name");
		if(ename) if(ename.substr(0,3)=="E::") {
			//alert(id);
			t=0;
			els=document.getElementsByName(ename);
			n.onclick=get;
			marked="";
			if(ename=="E::"+varname) {
				marked="marked";
				}
			n.className="varout"+marked;
			n.onmouseover=mover;
			n.onmouseout=mout;
			//mark(n);
			for(t=0;t<els.length;t++) {
				el=els[t];
				el.className="varout"+marked;
				el.onclick=get;
				el.onmouseover=mover;
				el.onmouseout=mout;
				//mark(el);
				}
			}
		}
	if(n.hasChildNodes()) {	
		for(s=0;s<n.childNodes.length;s++) {
			c=n.childNodes[s];
			marknodes(c);
			}
		}
	}