function popup(url,w,h) {
	var args = 'width=' + w + ',height=' + h;
	newwindow=window.open(url,'name',args);
	if (window.focus) {newwindow.focus()}
	return false;
}