function load(url1, url2) 
{
  parent.text.location.href= url1;
  parent.topframe.location.href= url2;
}
function loadp(url1) 
{
  parent.location.href= url1;
}

function statbar(txt) {
   window.status = txt;
}

function ShowLinks(obj,arg)
{
if (arg==0)
  obj.style.display = "none"
else
  obj.style.display = "";
}

function Ask()
{
  var stAsk = 'Are you sure you want to delete it?';
  return (window.confirm(stAsk));
}