function hdrSwap2(){
if (document.getElementById("hdr_USHome_ProgramChoice") != null){
theImg=document.getElementById("hdr_USHome_ProgramChoice");
theImg.id = "hdr_USHome_ProgramChoice_black"; 
}
else
{
theImg=document.getElementById("hdr_USHome_ProgramChoice_black");
theImg.id = "hdr_USHome_ProgramChoice_black"; 	
}
}



function enableFullListShow(show_id,hide_id)
	{
		document.getElementById(hide_id).style.display = "none";
		document.getElementById(show_id).removeAttribute("disabled");
		document.getElementById(show_id).style.display = "block";
	}

function enableFullListShow2(show_id,hide_id,hide_id2)
	{
		document.getElementById(hide_id).style.display = "none";
		document.getElementById(hide_id2).style.display = "none";
		document.getElementById(show_id).removeAttribute("disabled");
		document.getElementById(show_id).style.display = "block";
	}
	
function enableFullListShow3(show_id,hide_id,show_id2,hide_id2)
	{
		document.getElementById(hide_id).style.display = "none";
		document.getElementById(hide_id2).style.display = "none";
		document.getElementById(show_id).removeAttribute("disabled");
		document.getElementById(show_id).style.display = "block";
		document.getElementById(show_id2).removeAttribute("disabled");
		document.getElementById(show_id2).style.display = "block";
	}
	
function enableTextBoxShow(show_id)
	{
		document.getElementById(show_id).removeAttribute("disabled");
		document.getElementById(show_id).style.display = "block";
	}
	
		
function enableTextBoxHide(hide_id)
	{
		document.getElementById(hide_id).style.display = "none";
	}
	

// In IE, select elements hover on top of the lightbox--- hideSelects: 
function hideSelects(visibility){
	if (typeof document.body.style.maxHeight != "undefined") {
  // IE 7, mozilla, safari, opera 9
} else {
selects = document.getElementsByTagName('select');
for(i = 0; i < selects.length; i++) {
selects[i].style.visibility = visibility;
}
}
}




