// JavaScript Document
//global functions for abroadforadventure.com

//this function is called from all trip pages - it opens the tell-a-friend email form
//the variable link passed to it allows the form to reference the correct page to link
function openForm(link) {
		html_src= "send_link.php?link=" + link
		newWindow = window.open(html_src, 'SendMail', 'toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=430,height=400,screenX=80,screenY=88')
		}
		

function requestPDF(trip_id) {
		newWindow=window.open('brochure_download.php?trip_id='+trip_id, 'InfoWindow', 'toolbar=yes,location=yes,scrollbars=yes,resizable=yes,width=500,height=500')
	}