FrontPage Help
Split or merge frontpage tables
FrontPage behaviors and layers
Simply with a little JavaScript. Its just a copy and paste situation and you change just 2 lines of text. The script code is below. Insert the script anywhere you want it inside of the <body></body> tags.
LANGUAGE="JavaScript">
<!-- Begin
if ((navigator.appName == "Microsoft Internet Explorer")
&&
(parseInt(navigator.appVersion) >= 4)) {
var url="http://www.Your URL Here.com";
var title="Your title here";
document.write('<A 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 my 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>
Just change the two lines in the code that are in bold to your own site name and the page title to your own page title.
It really is that simple.
If you want the link on every page then consider either, incorporating the script into a page include or DWT