<?xml version="1.0" encoding="utf-8" ?>
<ScopeIt>
	<cutnpaste>
		<![CDATA[
	var aScoped = [];
	var aScopedMap = [];
	var aScopedHash = [];
	var iDepth = 0;
	var iCurrentDepth = 0;
	var aDepth = [];
	var iScopeMapCount = 0;
	var scope_to_text = 0;
	var iDrawOffsetTop = 50;
	var colors = ["#A0A0A0","#FFAAAA","#AAFFAA","#AAAAFF","#FFCCCC","#CCFFCC","#CCCCFF","#FFEEEE","#EEFFEE","#FFEEEE","#EFEFEF"];
	
	function NextColor(i){
		if(i > (colors.length - 1)){
			var d = i / colors.length;
			var c = parseInt((d - parseInt(d)) * colors.length);
			if(c >= colors.length) document.title = c;
			return colors[c];
		}
		else{
			return colors[i];
		}
	}
	
	function ScopeText(){
		aScoped = [];
		aScopedMap = [];
		aScopedHash = [];
		iScopeMapCount = 0;
		var raw_data = document.getElementById("oTextInput").value;
		
		if(raw_data.length == 0){
			alert('invalid data');
			return;
		}		
		var a = raw_data.split("~");

		//alert(a.length);
		//var a = demo_data.split("~");
		for(var i = 0; i < a.length; i++){
			var v;
			aScoped[i] = eval("v = " + a[i]);
		}
		DrawScope();	
	}
  
	function getAbsoluteTop(o){return getAbsolutePosition(o,1);}
	function getAbsoluteLeft(o){return getAbsolutePosition(o,0);}
	function getAbsolutePosition(o,b){
		var c=o,i=0;
		while(c!=null&&c.nodeName&&!c.nodeName.match(/^body$/i)){
			try{
				i+=(b?(c.offsetTop?c.offsetTop:0):(c.offsetLeft?c.offsetLeft:0));
				c=c.offsetParent;
			}
			catch(e){
				break;
			}
		}
		return i;
	}


	function DrillNodes(o,d){
		if(typeof d == "undefined") d = 1;
		for(var i = 0; i < o.childNodes.length; i++){
			
			var n = o.childNodes[i];
			if(n.nodeType != 1) continue;

			var nm = n.nodeName;
			
			var iW = n.offsetWidth;
			var iH = n.offsetHeight;
			var iT = getAbsoluteTop(n);
			var iL = getAbsoluteLeft(n);
			var disp = n.style.display;
			var ty = 0;
			var id = 0;
			if(n.id) id = n.id;
			if(n.name) nm = nm + "_" + n.name;
			else if( n.getAttribute("name")) nm = nm + "_" + n.getAttribute("name");
			if(nm.match(/^input$/i)){
				ty = n.type;
				if(n.type.match(/^hidden$/i)){
					disp = "none";
				}
			}
			AddNode(nm,iW,iH,iT,iL,id,ty,disp,d,n.className);


			if(n.hasChildNodes) DrillNodes(n,d + 1);
		}
	}

	function AddNode(n,w,h,t,l,z,y,d,i,c){
	
		var ind = aScopedMap[n];
		if(typeof ind != "number"){
			ind = iScopeMapCount++;
			aScopedMap[n] = ind;
		}
		else n = ind;
		
		if(typeof w != "number" || typeof h != "number"){
			w = 0;
			h = 0;
		}
		if(typeof c != "string" || c.length == 0) c = 0;
		
		if(typeof d != "string" || d.match(/^none$/i)) d = 0;
		else if(d.match(/^inline$/i)) d = 1;
		else if(d.match(/^block$/i)) d = 2;
		else if(d.length == 0) d = 2;
		
		if(!scope_to_text) aScoped[aScoped.length] = {n:n,i:z,y:y,w:w,h:h,t:t,l:l,d:d,p:i,c:c};
		else aScoped[aScoped.length] = "{n:" + (typeof n == "number" ? n : "'" + n + "'") + ",w:" + w + ",h:" + h + ",t:" + t + ",l:" + l + ",d:" + d + ",y:" + (typeof y == "string" ? "'" + y + "'" : 0) + ",i:" + (typeof z == "string" ? "'" + z + "'" : 0) + ",p:" + i + ",c:" + (typeof c == "string" ? "'" + c + "'":c) + "}"; 

		/*
		if(!scope_to_text) aScoped[aScoped.length] = {name:n,id:z,type:y,width:w,height:h,top:t,left:l,display:d,depth:i};
		else aScoped[aScoped.length] = "{name:'" + n + "',width:'" + w + "',height:'" + h + "',top:'" + t + "',left:'" + l + "',display:'" + d + "'}"; 
		*/
	}
	function Scope(){
		aScoped = [];
		aScopedMap = [];
		aScopedHash = [];
		iScopeMapCount = 0;
		DrillNodes(document.body);
	}
	//window.onload = init;
	function ScopeIt(){
		scope_to_text = 0;
		Scope();
		DrawScope();
	}
	function ScopeToText(){
		scope_to_text = 1;
		Scope();
		document.getElementById("oTextBox").value = aScoped.join("~");
	}
	function ScopeToTempText(){
		scope_to_text = 1;
		Scope();
		window["temptext"] = aScoped.join("~");
	}
	function MoveFirst(){
		iCurrentDepth = 0;
		ShowDepths();
	}
	function MovePrev(){
		iCurrentDepth--;
		if(iCurrentDepth < 0) iCurrentDepth = 0;
		ShowDepths();
	}
	function MoveNext(){
		iCurrentDepth++;
		if(iCurrentDepth > iDepth) iCurrentDepth = iDepth;
		ShowDepths();
	}
	function MoveLast(){
		iCurrentDepth = iDepth;
		ShowDepths();
	}
	function MoveTo(){
		iCurrentDepth = parseInt(document.getElementById("oDepthLevel").value);
		if(iCurrentDepth < 0) iCurrentDepth = 0;
		else if(iCurrentDepth > iDepth) iCurrentDepth = iDepth;
		ShowDepths();
	}
	function FindClass(){
		var sName = document.getElementById("oDepthLevel").value;
		iCurrentDepth = 0;
		ShowDepths("c",sName);
	}

	function FindId(){
		var sId = document.getElementById("oDepthLevel").value;
		iCurrentDepth = 0;
		ShowDepths("i",sId);
	}
	
	function ShowDepths(n,v){
		var l = aDepth.length;
		document.getElementById("oDepthLevel").value = iCurrentDepth;
		var b = 0;
		if(n && v) b = 1;
		for(var i = 0; i < l; i++){
			var a = aDepth[i];
			if(typeof a != "object") continue;
			for(var t = 0; t < a.length; t++){
				var o = a[t];
				var d = parseInt(o.getAttribute("scope-index"));
				var p = aScoped[d];
				if(i <= iCurrentDepth || (b && p[n]==v)){
					a[t].style.display = "block";
				}
				else{
					a[t].style.display = "none";
				}
			}
		}
	}



	function DrawControls(){
		var oP = document.createElement("div");
		oP.style.cssText = "border: 1px solid #000000;background-color: #CFCFCF;";
		var oI = document.createElement("input");
		oI.setAttribute("type","button");
		oI.setAttribute("value","<<");
		oI.onclick = MoveFirst;
		oP.appendChild(oI);

		oI = document.createElement("input");
		oI.setAttribute("type","button");
		oI.setAttribute("value","<");
		oI.onclick = MovePrev;
		oP.appendChild(oI);
		
		oI = document.createElement("input");
		oI.setAttribute("type","text");
		oI.setAttribute("id","oDepthLevel");
		oI.style.cssText = "width: 50px;padding-left: 3px;border:1px solid #000000;";
		oP.appendChild(oI);
		
		oI = document.createElement("input");
		oI.setAttribute("type","button");
		oI.setAttribute("value","!");
		oI.onclick = MoveTo;
		oP.appendChild(oI);

		oI = document.createElement("input");
		oI.setAttribute("type","button");
		oI.setAttribute("value","Id");
		oI.onclick = FindId;
		oP.appendChild(oI);

		oI = document.createElement("input");
		oI.setAttribute("type","button");
		oI.setAttribute("value","Class");
		oI.onclick = FindClass;
		oP.appendChild(oI);

		oI = document.createElement("input");
		oI.setAttribute("type","button");
		oI.setAttribute("value",">");
		oI.onclick = MoveNext;
		oP.appendChild(oI);
		
		oI = document.createElement("input");
		oI.setAttribute("type","button");
		oI.setAttribute("value",">>");
		oI.onclick = MoveLast;
		oP.appendChild(oI);
		
		document.body.appendChild(oP);
	}
	function DrawScope(){
		document.body.innerHTML = "";
		aScopedMap = [];
		aScopedHash = [];
		iDepth = 0;
		aDepth = [];
		iScopeMapCount = 0;
		DrawControls();
		
		/* fix up the hash */
		for(var i = 0; i < aScoped.length; i++){
			var o = aScoped[i];

			var n = o.n;
			
			if(typeof n == "string"){
				var ind = iScopeMapCount++;
				aScopedHash[ind] = n;
			}
			else{
				if(typeof aScopedHash[n] == "string"){
					n = aScopedHash[n];
				}
				else{
					alert('woops: ' + n + " from " + aScopedHash.length);
				}
			}

			var p = document.createElement("div");
			document.body.appendChild(p);
			p.style.position = "absolute";
			if(o.d == 0) p.style.display = "none";
			if(o.w <= 0 || o.h <= 0) continue;
			p.style.zIndex = o.p;
			p.style.left = o.l + "px";
			p.style.width = o.w + "px";
			p.style.top = (iDrawOffsetTop + o.t) + "px";
			p.style.height = o.h + "px";
			p.style.border = "1px solid #000000";
			p.style.font = "8pt Arial";
			
			p.setAttribute("scope-index",i);
			if(o.p > iDepth) iDepth = o.p;
			if(typeof aDepth[o.p] != "object" || aDepth[o.p] == null) aDepth[o.p] = [];
			var aD = aDepth[o.p];
			aD[aD.length] = p;
			
			var node_title =  "Name=" + n + " / ID=" + o.i + " / CLASS=" + o.c;
			p.setAttribute("title",node_title);

		
			p.appendChild(document.createTextNode((o.y ? o.y : n) + (o.i ? " " + o.i : "")));
			//if(o.p > (colors.length - 1)) document.title = o.p;
			p.style.backgroundColor = NextColor(o.p);//"#EFEFEF";
		}
		iCurrentDepth = iDepth;
		document.getElementById("oDepthLevel").value = iCurrentDepth;
	}
		]]></cutnpaste>
	<demo-data>
		<![CDATA[{n:'DIV',w:0,h:0,t:-1,l:-1,d:0,y:0,i:'divThm',p:1}~{n:'TABLE',w:809,h:621,t:0,l:0,d:2,y:0,i:0,p:1}~{n:'TBODY',w:809,h:621,t:0,l:0,d:2,y:0,i:0,p:2}~{n:'TR',w:809,h:26,t:0,l:0,d:2,y:0,i:0,p:3}~{n:'TD',w:809,h:26,t:0,l:0,d:2,y:0,i:0,p:4}~{n:1,w:809,h:25,t:0,l:0,d:2,y:0,i:0,p:5}~{n:2,w:809,h:25,t:0,l:0,d:2,y:0,i:0,p:6}~{n:3,w:809,h:25,t:0,l:0,d:2,y:0,i:0,p:7}~{n:4,w:89,h:25,t:0,l:0,d:2,y:0,i:'tdFN',p:8}~{n:'SPAN',w:35,h:13,t:6,l:5,d:2,y:0,i:0,p:9}~{n:5,w:44,h:13,t:6,l:40,d:2,y:0,i:0,p:9}~{n:5,w:36,h:13,t:6,l:44,d:2,y:0,i:'spnFC',p:10}~{n:5,w:6,h:13,t:6,l:44,d:2,y:0,i:'spnIC',p:11}~{n:5,w:0,h:0,t:5,l:-1,d:0,y:0,i:'spnCD',p:11}~{n:5,w:0,h:0,t:5,l:-1,d:0,y:0,i:'spnUCC',p:11}~{n:5,w:0,h:0,t:5,l:-1,d:2,y:0,i:'spnUC',p:12}~{n:4,w:663,h:25,t:0,l:87,d:2,y:0,i:0,p:8}~{n:4,w:2,h:25,t:0,l:750,d:2,y:0,i:0,p:8}~{n:5,w:0,h:0,t:11,l:749,d:0,y:0,i:'spnNwMl',p:9}~{n:'A',w:0,h:0,t:0,l:750,d:2,y:0,i:'newmail',p:10}~{n:'IMG',w:0,h:0,t:0,l:750,d:2,y:0,i:0,p:11}~{n:5,w:0,h:0,t:11,l:749,d:0,y:0,i:'spnNwVMl',p:9}~{n:6,w:0,h:0,t:0,l:750,d:2,y:0,i:'newmail',p:10}~{n:7,w:0,h:0,t:0,l:750,d:2,y:0,i:0,p:11}~{n:5,w:0,h:0,t:11,l:749,d:0,y:0,i:'spnNwFx',p:9}~{n:6,w:0,h:0,t:0,l:750,d:2,y:0,i:'newmail',p:10}~{n:7,w:0,h:0,t:0,l:750,d:2,y:0,i:0,p:11}~{n:5,w:0,h:0,t:11,l:749,d:0,y:0,i:'spnUM',p:9}~{n:6,w:0,h:0,t:0,l:750,d:2,y:0,i:'lnkShPh',p:10}~{n:7,w:0,h:0,t:0,l:750,d:2,y:0,i:0,p:11}~{n:5,w:0,h:0,t:-1,l:749,d:2,y:0,i:'spnShSts',p:11}~{n:7,w:0,h:0,t:0,l:750,d:2,y:0,i:0,p:11}~{n:5,w:0,h:0,t:11,l:749,d:0,y:0,i:'spnRm',p:9}~{n:6,w:0,h:0,t:0,l:750,d:2,y:0,i:'lnkRm',p:10}~{n:7,w:0,h:0,t:0,l:750,d:2,y:0,i:0,p:11}~{n:5,w:0,h:0,t:-1,l:749,d:2,y:0,i:'spnRmT',p:11}~{n:7,w:0,h:0,t:0,l:750,d:2,y:0,i:'imgRm',p:11}~{n:5,w:0,h:0,t:11,l:749,d:0,y:0,i:'spnNE',p:9}~{n:6,w:0,h:0,t:0,l:750,d:2,y:0,i:'nerrinf',p:10}~{n:7,w:0,h:0,t:0,l:750,d:2,y:0,i:0,p:11}~{n:4,w:57,h:25,t:0,l:752,d:2,y:0,i:0,p:8}~{n:6,w:55,h:25,t:0,l:753,d:2,y:0,i:'help',p:9}~{n:7,w:16,h:16,t:4,l:762,d:2,y:0,i:0,p:10}~{n:5,w:0,h:0,t:-1,l:752,d:0,y:0,i:'spnhlpLnk',p:10}~{n:3,w:809,h:595,t:26,l:0,d:2,y:0,i:0,p:3}~{n:4,w:809,h:595,t:26,l:0,d:2,y:0,i:'tdC',p:4}~{n:1,w:809,h:594,t:26,l:0,d:2,y:0,i:'tblRPR',p:5}~{n:'COLGROUP',w:809,h:594,t:26,l:0,d:2,y:0,i:0,p:6}~{n:'COL',w:310,h:594,t:26,l:0,d:2,y:0,i:'cLV',p:7}~{n:9,w:3,h:594,t:26,l:0,d:2,y:0,i:0,p:7}~{n:9,w:496,h:594,t:26,l:0,d:2,y:0,i:'cRP',p:7}~{n:2,w:809,h:594,t:26,l:0,d:2,y:0,i:0,p:6}~{n:3,w:809,h:31,t:26,l:0,d:2,y:0,i:0,p:7}~{n:4,w:310,h:31,t:26,l:0,d:2,y:0,i:'tdTBL',p:8}~{n:1,w:310,h:31,t:26,l:0,d:2,y:0,i:'tblTBL',p:9}~{n:2,w:310,h:30,t:26,l:0,d:2,y:0,i:0,p:10}~{n:3,w:310,h:30,t:26,l:0,d:2,y:0,i:0,p:11}~{n:4,w:57,h:30,t:26,l:0,d:2,y:0,i:0,p:12}~{n:6,w:55,h:28,t:27,l:1,d:2,y:0,i:'newmsgc',p:13}~{n:7,w:16,h:16,t:34,l:10,d:2,y:0,i:0,p:14}~{n:4,w:24,h:30,t:26,l:57,d:2,y:0,i:0,p:12}~{n:6,w:22,h:28,t:27,l:58,d:2,y:0,i:'newmsgcd',p:13}~{n:7,w:10,h:20,t:32,l:64,d:2,y:0,i:0,p:14}~{n:1,w:0,h:0,t:0,l:0,d:0,y:0,i:'tblnewmsgcMnu',p:13}~{n:2,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:14}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'newmsg',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'newappt',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'newmtng',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'newc',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'newcdl',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'newtask',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'newfolder',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:4,w:1,h:30,t:26,l:81,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:81,d:2,y:0,i:0,p:13}~{n:4,w:48,h:30,t:26,l:82,d:2,y:0,i:0,p:12}~{n:6,w:46,h:28,t:27,l:83,d:2,y:0,i:'rps',p:13}~{n:7,w:16,h:16,t:34,l:92,d:2,y:0,i:0,p:14}~{n:7,w:10,h:20,t:32,l:113,d:2,y:0,i:0,p:14}~{n:1,w:0,h:0,t:0,l:0,d:0,y:0,i:'tblrpsMnu',p:13}~{n:2,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:14}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'rpo',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'rpr',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:3,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:15}~{n:4,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:16}~{n:6,w:0,h:0,t:0,l:0,d:2,y:0,i:'rpb',p:17}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:18}~{n:4,w:1,h:30,t:26,l:130,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:130,d:2,y:0,i:0,p:13}~{n:4,w:0,h:0,t:26,l:0,d:0,y:0,i:0,p:12}~{n:6,w:0,h:0,t:26,l:0,d:2,y:0,i:'ml',p:13}~{n:7,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:14}~{n:4,w:36,h:30,t:26,l:131,d:2,y:0,i:0,p:12}~{n:6,w:34,h:28,t:27,l:132,d:2,y:0,i:'sl',p:13}~{n:7,w:16,h:16,t:34,l:141,d:2,y:0,i:0,p:14}~{n:4,w:1,h:30,t:26,l:167,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:167,d:2,y:0,i:0,p:13}~{n:4,w:36,h:30,t:26,l:168,d:2,y:0,i:0,p:12}~{n:6,w:34,h:28,t:27,l:169,d:2,y:0,i:'checkmessages',p:13}~{n:7,w:16,h:16,t:34,l:178,d:2,y:0,i:0,p:14}~{n:4,w:1,h:30,t:26,l:204,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:204,d:2,y:0,i:0,p:13}~{n:4,w:36,h:30,t:26,l:205,d:2,y:0,i:0,p:12}~{n:6,w:34,h:28,t:27,l:206,d:2,y:0,i:'move',p:13}~{n:7,w:16,h:16,t:34,l:215,d:2,y:0,i:0,p:14}~{n:4,w:1,h:30,t:26,l:241,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:241,d:2,y:0,i:0,p:13}~{n:4,w:36,h:30,t:26,l:242,d:2,y:0,i:0,p:12}~{n:6,w:34,h:28,t:27,l:243,d:2,y:0,i:'delete',p:13}~{n:7,w:16,h:16,t:34,l:252,d:2,y:0,i:0,p:14}~{n:4,w:1,h:30,t:26,l:278,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:278,d:2,y:0,i:0,p:13}~{n:4,w:31,h:30,t:26,l:279,d:2,y:0,i:0,p:12}~{n:4,w:3,h:594,t:26,l:310,d:2,y:0,i:'tdRR',p:8}~{n:7,w:4,h:594,t:27,l:310,d:2,y:0,i:'imgRR',p:9}~{n:4,w:496,h:31,t:26,l:313,d:2,y:0,i:'tdTBR',p:8}~{n:1,w:496,h:31,t:26,l:313,d:2,y:0,i:'tblTBR',p:9}~{n:2,w:496,h:30,t:26,l:313,d:2,y:0,i:0,p:10}~{n:3,w:496,h:30,t:26,l:313,d:2,y:0,i:0,p:11}~{n:4,w:63,h:30,t:26,l:313,d:2,y:0,i:0,p:12}~{n:6,w:61,h:28,t:27,l:314,d:2,y:0,i:'reply',p:13}~{n:7,w:16,h:16,t:34,l:323,d:2,y:0,i:0,p:14}~{n:4,w:1,h:30,t:26,l:376,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:376,d:2,y:0,i:0,p:13}~{n:4,w:90,h:30,t:26,l:377,d:2,y:0,i:0,p:12}~{n:6,w:88,h:28,t:27,l:378,d:2,y:0,i:'replyall',p:13}~{n:7,w:16,h:16,t:34,l:387,d:2,y:0,i:0,p:14}~{n:4,w:1,h:30,t:26,l:467,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:467,d:2,y:0,i:0,p:13}~{n:4,w:76,h:30,t:26,l:468,d:2,y:0,i:0,p:12}~{n:6,w:74,h:28,t:27,l:469,d:2,y:0,i:'forward',p:13}~{n:7,w:16,h:16,t:34,l:478,d:2,y:0,i:0,p:14}~{n:4,w:1,h:30,t:26,l:544,d:2,y:0,i:0,p:12}~{n:0,w:1,h:24,t:33,l:544,d:2,y:0,i:0,p:13}~{n:4,w:264,h:30,t:26,l:545,d:2,y:0,i:0,p:12}~{n:3,w:809,h:563,t:57,l:0,d:2,y:0,i:0,p:7}~{n:4,w:310,h:563,t:57,l:0,d:2,y:0,i:0,p:8}~{n:1,w:310,h:563,t:57,l:0,d:2,y:0,i:0,p:9}~{n:2,w:310,h:563,t:57,l:0,d:2,y:0,i:0,p:10}~{n:3,w:310,h:26,t:57,l:0,d:2,y:0,i:'trF',p:11}~{n:4,w:310,h:26,t:57,l:0,d:2,y:0,i:'tdF',p:12}~{n:0,w:310,h:26,t:57,l:0,d:2,y:0,i:'divFnd',p:13}~{n:1,w:310,h:26,t:57,l:0,d:2,y:0,i:'tblF',p:14}~{n:2,w:310,h:26,t:57,l:0,d:2,y:0,i:0,p:15}~{n:3,w:310,h:26,t:57,l:0,d:2,y:0,i:0,p:16}~{n:4,w:30,h:26,t:57,l:0,d:2,y:0,i:'tdLbl',p:17}~{n:4,w:0,h:0,t:57,l:0,d:0,y:0,i:'tdClr',p:17}~{n:4,w:238,h:26,t:57,l:30,d:2,y:0,i:0,p:17}~{n:1,w:236,h:24,t:58,l:31,d:2,y:0,i:0,p:18}~{n:2,w:236,h:24,t:58,l:31,d:2,y:0,i:0,p:19}~{n:3,w:236,h:24,t:58,l:31,d:2,y:0,i:0,p:20}~{n:4,w:236,h:24,t:58,l:31,d:2,y:0,i:0,p:21}~{n:'INPUT',w:234,h:17,t:62,l:32,d:2,y:'text',i:'txtF',p:22}~{n:4,w:24,h:26,t:57,l:268,d:2,y:0,i:'tdFImg',p:17}~{n:7,w:18,h:18,t:61,l:271,d:2,y:0,i:0,p:18}~{n:4,w:18,h:26,t:57,l:292,d:2,y:0,i:'tdFScp',p:17}~{n:7,w:10,h:20,t:60,l:296,d:2,y:0,i:0,p:18}~{n:3,w:310,h:537,t:83,l:0,d:2,y:0,i:0,p:11}~{n:4,w:310,h:537,t:83,l:0,d:2,y:0,i:'tdLV',p:12}~{n:0,w:310,h:536,t:83,l:0,d:2,y:0,i:'divLstV',p:13}~{n:1,w:310,h:536,t:83,l:0,d:2,y:0,i:0,p:14}~{n:2,w:310,h:536,t:83,l:0,d:2,y:0,i:0,p:15}~{n:3,w:310,h:20,t:83,l:0,d:2,y:0,i:0,p:16}~{n:4,w:310,h:20,t:83,l:0,d:2,y:0,i:'tdHdr',p:17}~{n:1,w:310,h:20,t:83,l:0,d:2,y:0,i:'tblHdrLyt',p:18}~{n:2,w:310,h:19,t:83,l:0,d:2,y:0,i:0,p:19}~{n:3,w:310,h:19,t:83,l:0,d:2,y:0,i:0,p:20}~{n:4,w:310,h:19,t:83,l:0,d:2,y:0,i:'tdHdrCtnt',p:21}~{n:0,w:310,h:19,t:83,l:0,d:2,y:0,i:'divHS',p:22}~{n:1,w:310,h:19,t:83,l:0,d:2,y:0,i:'tblH',p:23}~{n:2,w:310,h:19,t:83,l:0,d:2,y:0,i:0,p:24}~{n:3,w:310,h:19,t:83,l:0,d:2,y:0,i:0,p:25}~{n:4,w:202,h:19,t:83,l:0,d:2,y:0,i:'tdAB',p:26}~{n:5,w:23,h:13,t:85,l:70,d:2,y:0,i:0,p:27}~{n:7,w:5,h:3,t:91,l:99,d:2,y:0,i:0,p:27}~{n:4,w:108,h:19,t:83,l:202,d:2,y:0,i:'tdSO',p:26}~{n:7,w:8,h:4,t:91,l:291,d:2,y:0,i:0,p:27}~{n:4,w:0,h:19,t:83,l:310,d:2,y:0,i:'tdFill',p:21}~{n:3,w:310,h:489,t:103,l:0,d:2,y:0,i:0,p:16}~{n:4,w:310,h:489,t:103,l:0,d:2,y:0,i:'tdIL',p:17}~{n:0,w:0,h:0,t:103,l:0,d:0,y:0,i:'divPrgrs',p:18}~{n:7,w:0,h:0,t:103,l:0,d:2,y:0,i:0,p:19}~{n:5,w:0,h:0,t:102,l:-1,d:2,y:0,i:'spnTxt',p:19}~{n:0,w:310,h:489,t:103,l:0,d:2,y:0,i:'divIL',p:18}~{n:0,w:310,h:21,t:103,l:0,d:2,y:0,i:'divNI',p:19}~{n:3,w:310,h:27,t:592,l:0,d:2,y:0,i:0,p:16}~{n:4,w:310,h:27,t:592,l:0,d:2,y:0,i:0,p:17}~{n:1,w:310,h:27,t:592,l:0,d:2,y:0,i:0,p:18}~{n:2,w:310,h:21,t:595,l:2,d:2,y:0,i:0,p:19}~{n:3,w:310,h:21,t:595,l:2,d:2,y:0,i:0,p:20}~{n:4,w:119,h:21,t:595,l:2,d:2,y:0,i:0,p:21}~{n:10,w:34,h:17,t:597,l:36,d:2,y:'text',i:'txtSR',p:22}~{n:5,w:6,h:13,t:599,l:89,d:2,y:0,i:'spnER',p:22}~{n:5,w:6,h:13,t:599,l:111,d:2,y:0,i:'spnTC',p:22}~{n:4,w:111,h:21,t:595,l:123,d:2,y:0,i:'tdPF',p:21}~{n:4,w:72,h:21,t:595,l:236,d:2,y:0,i:'tdPI',p:21}~{n:7,w:16,h:16,t:597,l:240,d:2,y:0,i:'fP',p:22}~{n:7,w:16,h:16,t:597,l:256,d:2,y:0,i:'pP',p:22}~{n:7,w:16,h:16,t:597,l:272,d:2,y:0,i:'nP',p:22}~{n:7,w:16,h:16,t:597,l:288,d:2,y:0,i:'lP',p:22}~{n:4,w:496,h:563,t:57,l:313,d:2,y:0,i:'tdRP',p:8}~{n:'IFRAME',w:0,h:0,t:57,l:313,d:0,y:0,i:'ifRP',p:9}~{n:1,w:0,h:0,t:26,l:0,d:0,y:0,i:'tblRPB',p:5}~{n:2,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:6}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdTB',p:8}~{n:1,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:9}~{n:2,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:10}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:11}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdTBL',p:12}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdTBR',p:12}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:'trF',p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdF',p:8}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:'trRP',p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdLV',p:8}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:8}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:'imgRB',p:9}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdRP',p:8}~{n:1,w:0,h:0,t:26,l:0,d:0,y:0,i:'tblRPO',p:5}~{n:2,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:6}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdTB',p:8}~{n:1,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:9}~{n:2,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:10}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:11}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdTBL',p:12}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdTBR',p:12}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:'trF',p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdF',p:8}~{n:3,w:0,h:0,t:26,l:0,d:2,y:0,i:0,p:7}~{n:4,w:0,h:0,t:26,l:0,d:2,y:0,i:'tdLV',p:8}~{n:0,w:0,h:0,t:0,l:0,d:0,y:0,i:'divAbm',p:1}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divDt',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divCv',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divFr',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divTo',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divSz',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divSbj',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divTy',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divAt',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divIm',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:0,l:0,d:0,y:0,i:'divVwm',p:1}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divR',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:4}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divRA',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:4}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divF',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:4}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divS1',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:'spnCmDv',p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divMR',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:4}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divMU',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:4}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divS2',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:'spnCmDv',p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divD',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:4}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:0,w:0,h:0,t:-1,l:-1,d:2,y:0,i:'divMC',p:2}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}~{n:7,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:4}~{n:5,w:0,h:0,t:0,l:0,d:2,y:0,i:0,p:3}]]>
	</demo-data>
</ScopeIt>

