var newwindow;
function poptastic(url) {
	newwindow = window
			.open(
					url,
					'name',
					'height=400,width=420,menubar=no,location=no,toolbar=no,scrollbars=yes,resizable=true');
	if (window.focus) {
		newwindow.focus();
	}
}

