Better way is to have a script run at all external links
In the Head section of the page (or an external .js called form all pages) add
function Warn() { // LEAVE SITE Notice
var msg = 'IMPORTANT DISCLOSURE -' + '\n' + '\n'
+ 'This page link is provided solely for your convenience. We are NOT responsible for the accuracy and completeness of
information, typographical errors or errors of omission. We do not assume any liability as a result of the use or misuse of the
information. By your use of this information, you recognize and agree to hold us, our employees, agents, successors, and/or
assignees harmless from any liability as a result of your using this information, materials, products or services listed at this
website.' + '\n' + '\n'
+ 'Click "OK" to proceed to this website ..... then Close the browser window to Return to our Site.'
+ 'Or to Remain at our website, click "Cancel".' + '\n';
if (confirm( msg )) {return true;} else { history.go(0); return false;}; };
And for each hyperlink add
<a href="
http://someotherplace.com" target="_blank" onclick="return Warn();">
| 1) Concerning your question about default font.
|
| Tools > Page Options > Default Font tab. Change it to the font you want, and it
| should stay that way the next time you load Frontpage (and probably changes are
| immediate).
|
| This is *only* the font for design view, not the font for *display* view or
| preview on the web.
|
|
| 2) Concerning the 'disclaimer' question:
|
| a) If you want an "alert box" to come up when you close a browser window, do
| this:
|
| <body onUnload='alert('you're leaving this site....");'>
|
| This might also happen when you go to a difference site within the same browser
| window rather than opening a new one.
|
| OR
|
| b) If you want a disclaimer stating you're not responsible for the content or
| maintenance of external sites linked from your site that visitors see when they
| first load the site.
|
| <body onLoad='alert=("Sites linked from this site are not the responsibility of
| this site owner");'> Do this instead of a pop up window will avoid the issue
| with people who block pop-ups, but it may also turn people away.....the best idea
| is just to have a line of text, in a prominent place, or just a link somewhere
| that goes to a disclaimer page or 'conditions of use' or whatever page that has
| all the legal mumbo jumbo on it.
|
|
| OR
|
| c) When a user clicks a link to an outside site, you can do the alert box on the
| spot
|
| <a href=
http://www.starwars.com onclick='alert=("This site is external to the
| site you're viewing. The author has no responsibility for the content or
| maintenance of the site you're about to browse to");'>Click for Star Wars</a>
|
| Again, it could get a bit annoying having all these messages pop up every time
| you or a visitor goes to an external site.... so you need to set some kind of
| cookie (can't tell you how to do this) but something that tells the browser that
| a particular visitor has *already* seen the message and so not to pop it up again
| the next time they visit your site, or click link(s) to the external site(s) from
| your pages.
|
| Hope this at least helps get you started.
|
|
| | > I'm kinda new to this web site stuff, so please bear with me. I have 2
| > questions. First of all, how do I change my freaking default font in FP
| > 2002? Everything says it is changed, but everytime I start typing, it's the
| > book antiqua that comes up. I don't want that.
| > Secondly, I've seen some websites that give you a warning, disclaimer,
| > whatever, when you are leaving their site to an external link. I would like
| > to be able to do that on our website, but I'm not sure how.
| >
| >
| >
|
|