function bookmarkSite() {
	var url = 'http://www.mickeyresort.com';
	var title = 'Florida Paradise Villas';

	//This code was put in a try-catch block because
	//some browsers will error when running it.  This will
	//allow for better cross-browser compatibility.
	try {
		if (window.sidebar) { // firefox
			window.sidebar.addPanel(title, url, "");
		} else if( document.all && window.external ) { //MSIE
			window.external.AddFavorite(url, title);
		} else {
			alert('In order to bookmark this site you need to do so manually '+
			'through your browser.');
		}
	} catch(err) {
		alert('In order to bookmark this site you need to do so manually '+
			'through your browser.');
	}

}