function RedirectPage(base) {
  var c=document.forms['hist'].elements['hist'];
  if (c.options[c.selectedIndex].text == 'History') {
    return false;
  } else {
    window.location.replace(base + '?' + c.options[c.selectedIndex].value);
    return false;
  }
}

function doPrepareSearch(v)
{
  var a=v.split("|");
  document.getElementById('custom_search_field').name=a[0];
  if (document.getElementById('custom_search_field').value.match(/^\[[\w\s]+\]$/))
  {
    document.getElementById('custom_search_field').value=a[1];
  }
}

function DeleteFriend(id,confirmation)
{
  if (confirm(confirmation))
  {
    window.location="?page=account&area=friends&action=kill&kill_user_id="+id;
  }
}

function kill(e)
{
	if (e)
		e.cancelBubble = true;
	else
		window.event.cancelBubble = true;
}


