var wsint;
var wstime = 10;
function nv(newhref) {
  nv_win = window.open(newhref,"nv_win","top=0,left=0,menubar=Yes,toolbar=Yes,location=Yes,scrollbars=Yes,status=Yes,resizable=Yes");
  return true;
}
function n() {
  void(0);
}
function ws1(str) {
  if (!str) str = "";
  window.status = str;
  wsint = setTimeout("ws1('"+ str +"')",wstime);
  if (wstime<500) wstime *= 2;
}
function ws2 () {
	clearInterval(wsint);
	wstime = 10;
	window.status = "";
}
function Get_Obj (id) {
  return document.getElementById ? document.getElementById(id) : document.all[id];
}
function Poner_Contenido(id, html_str) {
  var obj = Get_Obj (id);
  if (obj != undefined) obj.innerHTML = html_str;
}
