var newwindow;
function poptastic(url)
{
	newwindow=window.open(url,'name','height=200,width=400,left=100,top=100,resizable=no,scrollbars=no,toolbar=no,status=no');
	if (window.focus) {newwindow.focus()}
}

