isIE=document.all;
isNN=!document.all&&document.getElementById;
isN4=document.layers;
isActive=false;

var loc="images/";
	var clicked="";var gtype=".gif";
	var htmlSection = "";
	
	function turn_over(name) {
		if (document.images != null && clicked != name) {document[name].src = loc+"/"+name+"_over"+gtype;}
	}
	function turn_off(name) {
		if (document.images != null && clicked != name) {document[name].src = loc+"/"+name+gtype;}
	}
function ToggleFloatingLayer(DivID, iState) // 1 visible, 0 hidden
{
    if(document.layers)	   //NN4+
    {
       document.layers[DivID].visibility = iState ? "show" : "hide";
    }
    else if(document.getElementById)	  //gecko(NN6) + IE 5+
    {
        var obj = document.getElementById(DivID);
        obj.style.visibility = iState ? "visible" : "hidden";
    }
    else if(document.all)	// IE 4
    {
        document.all[DivID].style.visibility = iState ? "visible" : "hidden";
    }
}

function loadServicesMenu() {
	var sText = "";
	sText = "<div id=\"ServicesMenu\" style=\"position:absolute;width:250px;left:80; top:207; visibility:hidden\">"
		+ "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" class=\"floatingMenu\">"
		+ "<tr>	<td><a href=\"images/../billers.htm\" onmouseout=\"turn_off('servicesmenu_b1')\" onmouseover=\"turn_over('servicesmenu_b1')\">"
		+ "<img alt=\"Billers\" border=\"0\" height=\"24\" name=\"servicesmenu_b1\" src=\"images/servicesmenu_b1.gif\" width=\"111\" /></a></td>"
		+ "<td><a href=\"images/../agents.htm\" onmouseout=\"turn_off('servicesmenu_b2')\" onmouseover=\"turn_over('servicesmenu_b2')\">"
		+ "<img alt=\"Retail Agents\" border=\"0\" height=\"24\" name=\"servicesmenu_b2\" src=\"images/servicesmenu_b2.gif\" width=\"111\" /></a></td>"
		+ "<td><a href=\"images/../consumers.htm\" onmouseout=\"turn_off('servicesmenu_b3')\" onmouseover=\"turn_over('servicesmenu_b3')\">"
		+ "<img alt=\"Consumers\" border=\"0\" height=\"24\" name=\"servicesmenu_b3\" src=\"images/servicesmenu_b3.gif\" width=\"111\" /></a></td>"
		+ "</tr></table></div>";
// 	alert(sText);
    var d = document.createElement('div');
    d.innerHTML = sText;
    document.body.appendChild(d);
}
