// source: http://www.yourhtmlsource.com/javascript/popupwindows.html
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=600,width=680,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}