function makeNewWindows() {
if (!document.links) {
document.links = document.getElementsByTagName('a');
}
for (var t=0; t<document.links.length; t++) {
var extlinks = document.links[t];
if (extlinks.href.search(/http/) != -1) {
if (extlinks.href.search('/whynow.dumka.us/') == -1) {
extlinks.setAttribute('target', '_blank');
}
}
}
}
window.onload = function(e) {makeNewWindows();}