function openNewWindow(destination) { 
	var newwindow = window.open(destination, 'newone', '') ;
	if (window.focus) {
		newwindow.focus() ;
	}
	return false;
}
