var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=250,width=300,left=150,top=50,scrollbars=yes,resizable=yes');
	
	if (window.focus) {newwindow.focus()}
}

