// JavaScript Document

function emailAFriend(){
	
	var theURL = 'http://www.adventureisland.com.au/email-a-friend/index.php?title=' + document.title + "&link=" + document.URL;
	window.open(theURL,'adventure','width=660,height=500');
	
}

function bookmark(){
	
	var urlAddress = document.URL;
	var title = document.title; 
	
	
	if(window.sidebar)
	{ 		
		// Firefox
     	window.sidebar.addPanel(title, urlAddress,'');
	} 
	else if(document.all)
	{ 
		//IE
     	window.external.AddFavorite(urlAddress, title);
   }
}