function popitup(url) {

	newwindow=window.open(url,'name','height=140,width=500');

	if (window.focus) {newwindow.focus()}

	return false;

}