//Bookmark Script by Paul Egan 2002



function bookmark (url,title)

{

var ua = navigator.userAgent.toLowerCase();



var isMac = ua.indexOf("mac");

var version = parseFloat(navigator.appVersion);



document.write("If you visit this page often then you can ");



// MSIE 

if (navigator.appName.indexOf('Microsoft') != -1)

{

if (version >= 4 && isMac ==-1) // version 4 or greater for Windows

{



document.write('<A HREF="javascript:window.external.AddFavorite(url,title);" ');

document.write('onMouseOver=" window.status=');

document.write("'Please add this page to your Favorites Folder'; return true ");

document.write('"onMouseOut=" window.status=');

document.write("' '; return true ");

document.write('"> click here to bookmark this page.</a>');

}

else if (isMac !=-1) document.write(" 'Add Page to Favourites' from the Favourites menu.");

else document.write(" press CTRL+D to add this page to your Favourites.");

}



// Netscape

else if (navigator.appName == "Netscape")

{

if (isMac) document.write(" press Command+D to have Netscape bookmark this page.");

else document.write(" press CTRL+D to have Netscape bookmark this page.");

}



// AOL

else if (navigator.appVersion.indexOf("AOL") > 0 ) document.write(" add this page to your AOL Favorites Folder.");



// Other Browsers

else document.write(" bookmark this page.");



// Last sentence the same for all

document.write(" This means that you can return here quickly without having to type in the address.");

}