function popup(w, h, url, name) {
	newWin = window.open(url, name,'width= ' + w + ', height= ' + h + ', top=20, left=20, scrollbars=no, status=no, resizable=yes');
	newWin.focus();
}
