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