<!--

 // deframing code
 if (top != self) {
    top.location = self.location
}
 
 // Opens a pop up window
function OpenPopUp(UrlStr, width, height)
{
  open(UrlStr, 'Help', "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=yes,width=" + width + ",height=" + height);
  
  return false;
}

// Opens a regular window
function FollowLink(UrlStr, target)
{
	open(UrlStr, target);
}

// Url redirect within the same window.
function GoToPage(UrlStr)
{
	window.location.replace(UrlStr);
}

// -->