/********************************************
 ********* Villas Palm Island website  **********
 ** Written by Ian Collier, Autumn/Winter 2008 **
 ******** This work copyright Ian Collier ********
 *** Please do not copy or modified this work ***
 ** without seeking the express permission of **
 ** the author beforehand.  Thank you *********
 ********************************************/

// function to bookmark the current page
function bookmark(url,title) {
	// bookmark the the url, labled as title
  if ((navigator.appName == "Microsoft Internet Explorer") && (parseInt(navigator.appVersion) >= 4)) {
	  window.external.AddFavorite(url,title);
  }
	else {
		if (navigator.appName == "Netscape") {
			alert("Press CTRL-D to bookmark this page.");
 		} 
		else {
   		alert("Press CTRL-D (Netscape) or CTRL-T (Opera) to bookmark this page.");
		}
	}
}

