function GotoLocation(form) {
	
	var myindex = form.dest.selectedIndex;
	var url = form.dest.options[myindex].value
	
	if(url.length > 0)
		parent.location.href = url;
}


