// JavaScript Document
 
var newwindow;
function poptastic(url)
{
newwindow=top.window.open(url,'name','left=50,top=100,resizable =yes,scrollbars=yes,toolbar=false,status=yes');
	if (window.focus) {newwindow.focus()}
}

 