function popup(url, x, y) {
	var w = open( url,"artieq", "scrollbars=0,resizable=0,border=0,width=x,height=y" );
	w.focus();
	w.resizeTo(x,y);
	if ( w.opener == null )
		 w.opener = window;
}