/**
 * Open a url on a pop up
**/
function popupit(url) {
	newwindow=window.open(url,'_blank','height=200,width=150');
	if (window.focus) {newwindow.focus()}
	return false;
}