function popup(url) {

	newwindow=window.open(url,'name','scrollbars=no,height=600px,width=600px');

	if (window.focus) {newwindow.focus()}

	return false;

}