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