﻿
var newwindow;
function poptastic(aUrl, aName, aPopAttributes)
{
	/*newwindow=window.open(url,'name','height=400,width=200');*/
	newwindow=window.open(aUrl,aName,aPopAttributes);
	if (window.focus) {newwindow.focus()}
}

