This is a start. You can have the status print whatever you want, i.e. "Click to visit this site"
Code:
<script type="text/javascript">
function initialize(){
var x = document.getElementsByTagName('a');
for (var i=0; i< x.length; i++){
x[i].onmouseover = function(){return ShowIt()}
x[i].onfocus = function(){return ShowIt()}
x[i].onmouseout = function(){return ClearIt()}
x[i].target = "_blank";
}
}
function ClearIt(){
window.status = '';
return true;
}
function ShowIt(){
window.status = 'Click to visit this site';
return true;
}
window.onload = initialize;
</script>
** NOTES:
This is the only way I've found to open a new window in XHTML complient pages
Using
base target="_blank" in the head, apparently does not work with IE7.