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

 