function validate() {
	if (document.email_a_friend.secret_code.value = 'booya')
		return true;
	return false;
}

function email_a_friend(url, title) {
	window.open('http://www.hollywood-elsewhere.com/email_a_friend.php?email_url=' + url + '&title=' + title, "Email", "width=500,height=600,scrollbars=no");
	return false;
}

