// JavaScript Document

var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=400,width=600,location=0,scrollbars=0,resizable=0');
	if (window.focus) {newwindow.focus()}
}
