October 21st, 2002, 11:19 PM
|
#4 (permalink)
|
| Senior Member
Join Date: Oct 2001 Location: Alberta, Canada
Posts: 563
|
or, if you absolutly need the < base target="rbottom" >, you can add target="_top" into your link for adding to favourites... so it'd be this: Code: <SCRIPT LANGUAGE="JavaScript">
if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
var url="http://sixf00t4.ath.cx";
var title="Sixf00t4.ath.cx";
document.write('<A target="_top" HREF="javascript:window.ext');
document.write('ernal.AddFavorite(url,title);" ');
document.write('onMouseOver=" window.status=');
document.write("'Add our site to your favorites!'; return true ");
document.write('"onMouseOut=" window.status=');
document.write("' '; return true ");
document.write('">Add our site to your favorites!</a>');
}
else {
var msg = "Don't forget to bookmark us!";
if(navigator.appName == "Netscape") msg += " (CTRL-D)";
document.write(msg);
}
// End -->
</script> |
| |