function initBody(){
}

/*
* Resolve o problema do target="_blank", pois o xhtml strict não aceita.
* 
*/
function init() {
	createExternalLinks();
}
function createExternalLinks() {
    if(document.getElementsByTagName) {
        var anchors = document.getElementsByTagName('a');
        for(var i=0; i<anchors.length; i++) {
            var anchor = anchors[i];
            if(anchor.getAttribute("href") && anchor.getAttribute('rel')=='externo') { // <-- É necessário inserir rel="externo" no link
                anchor.target = '_blank';
                var title = anchor.title; // <-- Insere este texto no final do Title do link
                anchor.title = title;
            }
        }
    }
}

function closeFloater(div){
	document.getElementById(div).style["display"]="none";
}