function showurlin(url, dest, options)
{
  if (dest == 'popup')
  {
    /*
    if(url.match(/\.asp/)) {
      if(url.match(/\?/))
        window.open(url + '&opener=' + window.location.href, '', options);
      else
        window.open(url + '?opener=' + window.location.href, '', options);
    }
    else
    */
      window.open(url, '', options);
  }
  else if (dest == 'original')
  {
    if (window.opener.location)
      window.opener.location.href = url;
  }
}
