function insertpic(Text) {
   parent.document.getElementById('_text_editor').focus();
   SelectedText=parent.document.selection.createRange();
   SelectedText.pasteHTML(Text);
}

function time(){
  vr=new Date();
  hr=vr.getHours();
  min=vr.getMinutes();
  sec=vr.getSeconds();
  if(sec<10){
    sec="0"+sec;
    }
  if(min<10){
    min="0"+min;
    }
  document.getElementById('timer').innerText=hr+":"+min+":"+sec;
  setTimeout("time()",1000);
  }
function show_hide(id_form){
  if(document.getElementById(id_form).style.display=='block'){
    document.getElementById(id_form).style.display='none';
    }else{
      document.getElementById(id_form).style.display='block';
      }
  }
function openPic(link,width,height){
  window.open(link,"","width="+width+",height="+height+",toolbar=0,location=0,directories=0,status=0");
  }
