
var StyleButton=new Array(
	'http://www.salusline.com/webutils/pngtext.php?FONT=fradm&SIZE=6&COLOR=660033&ALIGN=l&BGCOLOR=F4EEE0&WIDTH=148&HEIGHT=20&XPAD=13&YPAD=4&ICON=ic_cruz_com,1,5&text=',
	'http://www.salusline.com/webutils/pngtext.php?FONT=fradm&SIZE=6&COLOR=660033&ALIGN=l&BGCOLOR=F4EEE0&WIDTH=148&HEIGHT=20&XPAD=13&YPAD=4&ICON=ic_cruz_com,1,5&text=');

var selected=false;

function GetStyleButton(texto,OnOff) {
  var res=StyleButton[OnOff] + escape(texto);
  return res;
}

function SetOption(n) {
  var linkdata,obj;
  if (selected) {
	linkdata=botones[selected];
	obj=document.getElementById('boton_'+selected);
	obj.style.backgroundColor=obj.style.prevstyle;
  }
  linkdata=botones[n];
  obj=document.getElementById('boton_'+n);
  if (!obj.prevstyle) obj.prevstyle=obj.style.backgroundColor;
  obj.style.backgroundColor='#d7c320';
  selected=n;
  
}

function CreaBotonera(botones,vertical) {
 var res='';
 for (var i in botones) {
 	linkdata=botones[i];
	if (!linkdata) continue;
	res+='<a class=botonera id="boton_' + i +
		'" href="./index.php?SEC=modulos&MOD=' + i + 
		'" onClick="SetOption(\'' + i + '\')" onFocus="this.blur()">' +
	linkdata +
	'</a>';
	if (vertical) res+='<br>';
 }
 return res;
}

