window.onload = function(){
    (function(sf){
        sf.onfocus = function(){if (this.value === blankSearchKeyword) this.value = null;}
        sf.onblur = function(){if(!this.value) this.value = blankSearchKeyword;}
    })(document.getElementById('searchKeyword'));
}

function externalLinks() {  
if (!document.getElementsByTagName) return;  
var anchors = document.getElementsByTagName("a");  
for (var i=0; i<anchors.length; i++) {  
var anchor = anchors[i];  
if (anchor.getAttribute("href") &&  
anchor.target = "_blank";  
}  
}  
window.onload=externalLinks; 
