var ns4 = (document.layers) ? true : false;
var ns6 = (document.getElementById && !document.all) ? true : false;
var ie4 = (document.all && !document.getElementById) ? true : false;
var ie5 = (document.getElementById) ? true : false;


var xanchors = Array();

xanchor = "";

xanchors["greatwindows"] = "information";

function updateStatus()
{
	for(var i in xanchors) 
	{ 

		if (ns4) {
			eval("xanchor = document." + i + ";");
			if (xanchor) {
			   text = xanchor.text
			}

		} else if (ns6) {
			eval("xanchor = document.getElementById(\"" + i + "\");");
			if (xanchor) {
			   text = xanchor.text
			}

		} else if (ie4) {
			eval("xanchor = document.all." + i + ";");
			if (xanchor) {
			   text = xanchor.text
			}

		} else if (ie5) {
			eval("xanchor = document.getElementById(\"" + i + "\");");
			if (xanchor) {
			   text = xanchor.innerText;
			}

		}

		if (xanchor) {
		   eval("xanchor.onmouseover = function() {toolTip('" + text + "', '" + xanchors[i] + "', '#CA9D4A', '#E8E6D7');}");
		   xanchor.onmouseout = function() {toolTip();}
		}
	} 
}

