<!--
// basic popup code embelished by code by PPK at http://www.xs4all.nl/~ppk/js/

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=350,width=500,left=300,top=250');
	if (window.focus) {newwindow.focus()}
}
