function bookmarksite(title, url){
	if (document.all)
		window.external.AddFavorite(url, title);
	else if (window.sidebar)
		window.sidebar.addPanel(title, url, "")
}


function findAdventure() {
	var f = document.form1;
	f.mode.value = 'search';
	f.submit();

}

function emailFriend() {
	//post to the popup
	var f = document.form1;

	window.open('includes/emailfriend.php?email'+f.email.value,'emailFriend','width=300,height=300');

}


function showMoreInfo(id) {
	document.getElementById('moreInfo_'+id).style.display = 'block';

//	document.getElementById('moreInfoButton_'+id).value = 'Hide';
	
}

function sendFeedback() {
	var f = document.form1;

	window.open('includes/feedback.php?feedback='+f.feedback.value,'emailFriend','width=300,height=300');

}