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