function openPDF() {

var locations = document.getElementById("locations");
var value = locations.options[locations.selectedIndex].value;
var URL  = "http://www.worldmarktheclub.com/destinations"+value;
	
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=1,scrollbars=1,location=0,statusbar=1,menubar=1,resizable=1,width=500,height=600');");
}

