function check(m)
{	var m;
	document.Form.elements[m].checked = true;
}
function treeMenu(id) {
 var disp = document.all(id).style.display;

 if(disp != "none" || disp == "") {
   document.all(id).style.display = "none";
  }
 else {
   document.all(id).style.display = "block";
  }
}

function add_text(id) {
		var id;
		$("#" + id).after('<input type="text" name="' + id + '[]" class="repeat_inp add_inp" />');
		$(".add_inp").blur( function () {

			if($(this).val() == ""){
				$(this).remove();

			}
		} );
	}


function copytools(inside) {
var cpcheck = 1;
  var copy = eval("document."+inside);
  copy.focus();
  copy.select();
  if (document.all&&cpcheck==1) {
    txRange = copy.createTextRange();
    txRange.execCommand('copy');
  }

}
