function addurl (dir, id, rss) {
  document.data.dir.value = dir;
  document.data.account.value = id;
  if(rss){
	  a = document.createElement('input');
	  a.name = 'is_rss';
	  a.type = 'hidden';
	  a.value = 1;
	  document.data.appendChild(a);  			
  }
  document.data.submit();
}

function odplink (link, dir) {
  var links = [ "http://dmoz.org/cgi-bin/add.cgi?where=", "http://dmoz.org/about.html", "http://dmoz.org/cgi-bin/apply.cgi" ];
  if (link == 0){  
   odp = window.open(links[link]+dir, "ODP");
   }
   else{
   odp = window.open(links[link], "ODP");
   }
}
function open_link (link)
{
  window.open(link, "Site");
}
function exec(command, id) {
  form = document.search;
  if(command == 'page'){
        document.search.page.value=id;
  }
  document.search.command.value=command;
  document.search.submit();
}

