
function openTravelProfile(url)
{
 NewPopupWindow = null;
  NewPopupWindow = window.open(pageTracker2._getLinkerUrl(url), 'TravelProfile',"toolbar=no,width=590,height=700,location=no,directories=no,status=yes,menubar=no,scrollbars=no,resizable=no");   
  // Don't Do the Focus in IE 3
  if (NewPopupWindow != null)
  {
	if (!((navigator.appName == "Microsoft Internet Explorer") && (navigator.appVersion.substring(0, 3) < "3")))
	{
		NewPopupWindow.focus();
	}
  }
}
