now, I use this code to open new windows, while still staying XHTML 1.0 STRICT valid, and maintaining accesibility even with JavaScript switched-off, or with pop-up blockers:
<script type='text/javascript'>
<!--
function openwin(url) {
if( window.open(url,'','left=0,top=0,scrollbars=yes,location=no,resizable=yes') )
return false;
else
return true;
}
// -->
</script>
now, instead of target="_blank" you will use onclick="return openwin(this.href)"
Example?
<a href="..." onclick="return openwin(this.href)">Website</a>
Simple, easy to do, and fully accesible and valid...