var newwindow;
function poptastic(url,opt,wind)
{	
	if (!wind) {
		wind='name';
	}
	if (opt) {
		newwindow=window.open(url,wind,opt);
	} else {
		newwindow=window.open(url,wind);
	}			
	if (window.focus) {
		newwindow.focus()
	}
}
