var newwindow = '';

function popitup(url) {
	if (!newwindow.closed && newwindow.location) {
		newwindow.location.href = url;
	}
	else {
		newwindow=window.open

(url,'name','toolbar=0,scrollbars=0,location=no,statusbar=0,menubar=0,resizable=0,width=600,height=600');
		if (!newwindow.opener) newwindow.opener = self;
	}
	if (window.focus) {newwindow.focus()}
	return false;
}
