function disclosureWin(url) {
	winH = 500;
	winW = 700;
	winTop= (screen.height/2)-((winH/2)+35);
	winLeft=(screen.width/2)-(winW/2);
	// Open the window without the web controls (address bar, toolbar, etc.)
	window.open(url, 'disclosure', 'width='+winW+',height='+winH+',top='+winTop+',left='+winLeft+',toolbar=no,scrollbars=yes,resizable=no,menubar=no,status=no,directories=no,location=no');
}

function closeWin(){
	window.close();
}

function showSpeedBump(newURL) {
  var resp = confirm("You are now leaving the agentsite.com/solutions web site. Citi does not provide, and is not responsible for, the product, service, or overall Web Site content available at the external Internet Web Site. The Citi privacy policies do not apply.");
  if (resp) {
    //window.location = newURL;
    window.open (newURL);
    PageMethods.IncrementExternalHits(newURL);
  }
}

//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";
}
