function Popup(url, name, width, height) {
	newwindow=window.open(url,'name','width='+width+',height='+height+',resizable=yes,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}