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