// JavaScript Document
var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=600,width=620,left=25,top=25,resizable=no,scrollbars=yes');
	if (window.focus) {newwindow.focus()}
}
