function launchPopup(type,url) {
	if(type == "Email_Friend") {
		window.open('/forward.cfm?p=send%20url&navid='+ url,type,'scrollbars=yes,width=500,height=450')
	}
	else if(type == "Print_Friendly") {
		window.open(url +'index.cfm?print',type,'scrollbars=yes,width=612,height=700')
	}
	else if(type == "Misc") {
		window.open(url,type,'scrollbars=yes')
	}
}