function findPopDest(url) {
	if (url == ""){
		alert('Please choose a destination before searching.');
		return;
	} else {
		document.location = url;
		return;
	}
}
