add this and it will work.
if you want it to work it needs the following js code.
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.getAttribute("rel") == "external")
anchor.target = "_blank";
}
}
window.onload = externalLinks;
2009/9/20 Lord Gustavo Miguel Angel <[email protected]>
> Hi,
>
> Why this code not working?
>
> <a rel="external" href="www.google.com">google</a>
>
> url www.google.com open in same windows.
>
>
> Thank“s
>
--
Regards,
Sergios Singeridis