
// Insertar tag textarea

    function insert(tag, formval, resetform) {
        strVariable=formval;
        resetVariable=resetform;
      document.Form1[strVariable].value += tag;
      document.Form1[strVariable].focus();
      document.Form1[resetVariable].selectedIndex=0;
    }
	
	
	

