<!-- Removes BR Tage From News Feed  //-->
function brRemove(){
	var brs = document.getElementById("mybrid").getElementsByTagName("br");
		for(var i=brs.length-1;i>=0;i--) {
	var elem = brs[i];
		elem.parentNode.removeChild(elem);
	}
}

<!-- Printer Friendly Pages - Currently Not Being Used //-->

function PrintThisPage() 
{ 
   var sOption="toolbar=yes,location=yes,directories=yes,menubar=yes,resizable=yes,"; 
       sOption+="scrollbars=yes,width=780,height=600,left=100,top=25"; 

   var sWinHTML = document.getElementById('contentWindowPrint').innerHTML; 
   
   var winprint=window.open("","",sOption); 
       winprint.document.open(); 
       winprint.document.write('<html><link href="css/print.css" rel="stylesheet" type="text/css" /><body>'); 
       winprint.document.write(sWinHTML);          
       winprint.document.write('</body></html>'); 
       winprint.document.close(); 
       winprint.focus(); 
}

<!-- Service Call Out Window Swap Script //-->

function changeOpenCallout(id){ 
	var all_callouts = new Array(); 
		all_callouts[0]='servicesCalloutSwap01'; 
		all_callouts[1]='servicesCalloutSwap02'; 
	for(i=0;i<all_callouts.length;i++){ 
		document.getElementById(all_callouts[i]).style.display = 'none'; 
} 
		the_callout = document.getElementById(id); 
		the_callout.style.display = 'block';
		clearButtons(); 
} 
function clearButtons() { 
	if (!document.getElementsByTagName) return; 
		var anchors = document.getElementsByTagName("a"); 
			for (var i=0; i<anchors.length; i++) { 
			var anchor = anchors[i]; 
	anchor.blur(); 
	} 
}


<!-- Menu Home Hide and Show  //-->
 
function changeOpenMenu(id){ 
var all_uls = new Array(); 
all_uls[0]='fly_one'; 
all_uls[1]='fly_two'; 
all_uls[2]='fly_three'; 
for(i=0;i<all_uls.length;i++){ 
document.getElementById(all_uls[i]).style.display = 'none'; 
} 
the_ul = document.getElementById(id); 
the_ul.style.display = 'block'; 
clearButtons(); 
} 
function clearButtons() { 
if (!document.getElementsByTagName) return; 
var anchors = document.getElementsByTagName("a"); 
for (var i=0; i<anchors.length; i++) { 
var anchor = anchors[i]; 
anchor.blur(); 
} 
}
