



function insertAmenities() {
	
	document.write('<a href="javascript:window.print();" title="Print this page" style="cursor:pointer; background-color:transparent;" ><img src="_img/_icon_print.png" alt="" style="width:16px; height:16px;" />&nbsp;&nbsp;print</a> &nbsp;&nbsp; &middot; &nbsp;&nbsp; ' +
'<a href="javascript:bookmark();" title="Bookmark this page" style="cursor:pointer; background-color:transparent;" ><img src="_img/_icon_bookmark.png" alt="" style="width:19px; height:18px;" />&nbsp;&nbsp;bookmark</a> &nbsp;&nbsp; &middot; &nbsp;&nbsp; ' + 
'<a href="javascript:emailFriend();" title="Share this site with your friend" style="cursor:pointer; background-color:transparent;" ><img src="_img/_icon_emailfriend.png" alt="" style="width:16px; height:11px;" />&nbsp;&nbsp;email friend</a>');

}




function bookmark() {
	
  if (navigator.platform.indexOf('Mac') != -1) {
     var keys = "Cmd + D";
  } else {
     var keys = "Ctrl + D";
  }
  
  var bookmarktext = "Close this info box then press " + keys + " to bookmark this page.";
  

	if (window.opera && window.print){ // Opera
		alert(bookmarktext);
	} else if (document.all) { // IE
		window.external.AddFavorite(document.location.href, document.title);
	} else if (window.sidebar) { 
		window.sidebar.addPanel(document.title, document.location,"");
	} else { //Firefox, Safari and other ones
       alert(bookmarktext);
	}  
	
}




function emailFriend() {

  new_window = window.open('index.php?page=email-friend','','toolbar=0,menubar=0,resizable=0,dependent=0,status=0,scrollbars=0,width=620,height=480,left=25,top=25');

}