function popup(url, width, height, opts){
	var params = 'width=' + width + ',height=' + height;
	if(opts){
		params += ',' + opts;
	}else{
		params += ',scrollbars=yes,resizable=yes';
	}
	var win = window.open(url,'newwin',params);
	win.focus();
}