<!--
  var newwindow;
  var random;
  var name;
function poptastic(url,attributes)
{
	randomnumber=Math.floor(Math.random()*1000);
	name = 'name' + randomnumber;
	newwindow=window.open(url,name,attributes);
	if (window.focus) {newwindow.focus()}
}

// -->