function bodyOnload() {
unLink();
}
function unLink() {
var links = document.getElementsByTagName('a');
for ( var i=0; i<links.length; i++ ) {
if ( links[i].href == document.location ) {
links[i].style.textDecoration	= 'none';
}
}
}