// Перезагрузка каптчи
function captcha_reload() {
document.images['captcha'].src='/captcha/captcha.php?rnd='+Math.round(Math.random(0)*1000);
}

// Текст в форме копируется в память
function copyText()
{
	var buffTxt = document.htmlcode.text;
	txtVar = buffTxt.createTextRange();
	txtVar.execCommand("Copy");
}
/////////////////////////////////////////////////////////////////////////////////////
//Раскрыть Embed
/////////////////////////////////////////////////////////////////////////////////////
function show_hide_text(divObj) {
    var div = divObj.parentNode.getElementsByTagName('div')[1];


    if (div.style.display == 'block') {
        div.style.display = 'none';
    } else {
        div.style.display = 'block';
    }
}
/////////////////////////////////////////////////////////////////////////////////////


// Добавить в Избранное 
function add_favorite(a) { 
  title=document.title; 
  url=document.location; 
  try { 
    // Internet Explorer 
    window.external.AddFavorite(url, title); 
  } 
  catch (e) { 
    try { 
      // Mozilla 
      window.sidebar.addPanel(title, url, ""); 
    } 
    catch (e) { 
      // Opera 
      if (typeof(opera)=="object") { 
        a.rel="sidebar"; 
        a.title=title; 
        a.url=url; 
        return true; 
      } 
      else { 
        // Unknown 
        alert('Нажмите Ctrl-D чтобы добавить страницу в закладки'); 
      } 
    } 
  } 
  return false; 
}
