
function postLink (url)
{
  var form = document.getElementById ('phoneform');
  if (form != undefined && url != '')
  {
    if (typeof (url) != "string")
    {
      url = url.getAttribute ('href');
    }
    form.action = url;
    form.submit ();
    return false;
  }
  return true;
}
