var newwindow;
function poptastic(url,name, dim)
{
if(dim == undefined){
var dim="height=360,width=360"
}
	newwindow=window.open(url,name,dim);
	if (window.focus) {newwindow.focus()}
}

// function closewindow() {
// if (!newwindow.closed) newwindow.close();
// }

