//Specifically targets list items for toggling visibility.
function toggleLI(obj) {
	var obj=document.getElementById(obj);
	if (obj.style.display == "list-item"){
		obj.style.display = "none";
	}
	else {
		obj.style.display = "list-item";
		//BELOW would have to target the <li> above the <ul> which is this "obj"
		//obj.style.background = "background-image: url(../images/leftNav_arrow_down.gif)";
	}
}

//Toggles standard block display items. (Used for FAQs)
function toggle(obj) {
	var obj=document.getElementById(obj);
	if (obj.style.display == "block")
		obj.style.display = "none";
	else
		obj.style.display = "block";
}

function showSpeedBump(newURL) {
  var resp = confirm("You are now leaving the agentsite.com/solutions web site. CitiMortgage, Inc. does not provide, and is not responsible for, the product, service, or overall Web Site content available at the external Internet Web Site. The CitiMortgage, Inc. privacy policies do not apply.");
  if (resp) {
    //window.location = newURL;
    window.open (newURL);
    PageMethods.IncrementExternalHits(newURL);
  }
}