var ROOT_PATH = ""
var menu_izq_root = "";

function fMenusChg(obj,className) { obj.setAttribute("className",className); }
function OptsMenuClickFun(url) { location.replace(url); }
function botonChgImg(obj,imgP) { obj.setAttribute("src",imgP); }

function chgSubSecc(val) {
  document.mainform.frm_subsecc.value=val;
  document.mainform.action = "index.asp"
  SubmitForm();
}

function SubmitForm() {
   var o = document.mainform;
   if (checkTextChars(o)) { o.submit(); }
   else                   { alert("ERROR PRG: unknow"); }     
}

function checkTextChars(o) {
   for (var i=0; i<o.elements.length; i++) {
      if (o.elements[i].type == "text" || o.elements[i].type == "textarea" || o.elements[i].type == "hidden") {
	   rExpQuot = /\'|\"/gi;
	   o.elements[i].value = o.elements[i].value.replace(rExpQuot,"&quot;")
	   //alert(o.elements[i].name + " => " + o.elements[i].value);
	  } 
   }	   
   return true;
}
