var newwindow;
function poptastic(url,t,l,w,h,s)
{
	newwindow=window.open(url,'_blank','top='+t+',left='+l+',toolbar=no,menubar=no,location=no,resizable=no,status=no,height='+h+',width='+w+',scrollbars='+s);
	if (window.focus) {newwindow.focus()}
}

