function popitup(url) {
	newwindow=window.open(url,'name','height=300,width=400,resizable=yes,scrollbars=yes,toolbar=no,status=yes');
	if (window.focus) {newwindow.focus()}
	return false;
}