function popup(url) {
	newwindow = window.open(url,'popup','height=600,width=800');
	if (window.focus) newwindow.focus();
	return false;
}

