// This makes sure there is a value selected - IE on
// the Mac has problems with null values here

function goto_select(url) {
	if (url != "") {
		window.open(url, '_top');
	}
	return true;
}
