function openFromFlash(url)
{
  if (navigator.appName.indexOf("Microsoft") != -1) newWin = window.open(url, 'newWin','width=10,height=10');
  else window.location = url;
}

function popCenter(bUrl, bName, bWidth, bHeight)
{
	var centerX = (screen.width - bWidth) / 2;
	var centerY = (screen.height - bHeight) / 2;
	var viewerpop = window.open(bUrl,bName,'location=no, toolbar=no, directories=no, menubar=no, resizable=no, scrollbars=no,status=no,width='+bWidth+',height='+bHeight+',left='+centerX+',top='+centerY);
}