// JavaScript Document

var newwindow;
function poptastic(url)
{
	
	newwindow=window.open(url,'name','height=330,width=330,resizable=no,scrollbars=no,status=no,location=no,left=300,top=250');
	if (window.focus) {newwindow.focus()}
	
}