function popitup(url, width, height) {
	newwindow=window.open(url,'name','toolbar=0,scrollbars=1,location=0,status=1,menubar=0,resizable=0,height='+height+',width='+width+'');
	if (window.focus) {newwindow.focus()}
	return false;
}