
function toggle( id){
  if (document.getElementById){
  		target = document.getElementById( id );
  			if (target.style.display == "none"){
  				target.style.display = "block";
  			} else {
  				target.style.display = "none";
  		}
  	}
}

window.onload =function() {
var href = document.getElementsByTagName("a");
	for (var i=0;i<href.length;i++) { 
	    href[i].onfocus = function() {this.blur();}};
};