var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=650,width=1200,left=0,top=0,scrollbars=yes,resizable=yes');
	
	if (window.focus) {newwindow.focus()}
}

