function poptastic(url, name, height, width)
{
	var newwindow;
	newwindow=window.open(url,name,'height=' + height + ',width=' + width + ',resizable=yes,scrollbars=yes,status=yes,left=20,top=20,screenX=20,screenY=20');
	if (window.focus) {newwindow.focus()}
}
