function popup(url) {
	newwindow=window.open(url,'name','height=585,width=780,scrollbars=1');
	
	if (window.focus) {
    newwindow.focus();
  }
  
	return false;
}