// JavaScript Document
//get all hrefs
//works for IE
var badhref = document.getElementsByTagName('A');
for (i=0;i<badhref.length;i++) {
	//if href has no text then remove it
	if (badhref[i].innerHTML == "") {
		badhref[i].style.display = "none";
		//badhref[i].outerHTML = "";    //only works in IE
	}
}


