var newwindow;

function poptastic(url)

{

	newwindow=window.open(url,'name','height=500,width=400,toolbar=no,scrollbars=yes,resizable=1');
//  mywindow.moveTo(0,0);
	if (window.focus) {newwindow.focus()}

}


