function dibuja_celdas(ancho,alto, title, claseNS, claseIE, claseLetra, link, texto, extras, parametros, identificador, indtabulador)
{
var strCeldas = new String();

if (isNav)
 {
	strCeldas = "<td  " + extras + " width='" + ancho + "' height='" + alto + "' align='center' title='" + title + "' class='" + claseNS + "'";
	if (link != '')
	{	
	strCeldas = strCeldas + " style=\"cursor:hand\"";
	strCeldas = strCeldas + " ONMOUSEOUT=\"JavaScript:this.className='" + claseNS + "';\">";
	}
	else strCeldas = strCeldas + ">";
	
	if (link != '')
	strCeldas = strCeldas + " <a href='javascript:" + link + "(" + parametros + ");' class='" + claseLetra + "'>" + texto + "</a></td>";
	else
	strCeldas = strCeldas + " <a class='" + claseLetra + "'>" + texto + "</a></td>";
 }
 else
 {
	strCeldas = "<td  tabIndex='" + indtabulador + "' " + extras + " width='" + ancho + "' height='" + alto + "' align='center' title='" + title + "' class='" + claseIE + "'";
	if (link != '')
	{
	strCeldas = strCeldas + " style=\"cursor:hand\"";
	strCeldas = strCeldas + " ONCLICK='JavaScript:" + link + "(" + parametros + ");'>";
	}
	else strCeldas = strCeldas + ">";
	strCeldas = strCeldas + "<a class='" + claseLetra + "' >" + texto + "</a></td>";
 }
 
document.write (strCeldas);

//return strCeldas;
}


function dame_dibuja_celdas(ancho,alto, title, claseNS, claseIE, claseLetra, link, texto, extras, parametros, identificador, indtabulador)
{
var strCeldas = new String();

if (isNav)
 {
	strCeldas = "<td  " + extras + " width='" + ancho + "' height='" + alto + "' align='center' title='" + title + "' class='" + claseNS + "'";
	if (link != '')
	{	
	strCeldas = strCeldas + " ONMOUSEOVER=\"JavaScript:;this.style.cursor = 'hand'\"";
	strCeldas = strCeldas + " ONMOUSEOUT=\"JavaScript:this.className='" + claseNS + "';\">";
	}
	else strCeldas = strCeldas + ">";
	if (link != '')
	strCeldas = strCeldas + " <a href='javascript:" + link + "(" + parametros + ");' class='" + claseLetra + "'>" + texto + "</a></td>";
	else
	strCeldas = strCeldas + " <a class='" + claseLetra + "'>" + texto + "</a></td>";
	
 }
 else
 {
	strCeldas = "<td  " + extras + " width='" + ancho + "' height='" + alto + "' align='center' title='" + title + "' class='" + claseIE + "'";
	if (link != '')
	{
	strCeldas = strCeldas + " ONMOUSEOVER=\"JavaScript:;this.style.cursor = 'hand'\"";
	strCeldas = strCeldas + " ONMOUSEOUT=\"JavaScript:this.className='" + claseIE + "';\"";
	strCeldas = strCeldas + " ONCLICK='JavaScript:" + link + "(" + parametros + ");'>";
	}
	else strCeldas = strCeldas + ">";
	strCeldas = strCeldas + "<a class='" + claseLetra + "' tabIndex='" + indtabulador + "'>" + texto + "</a></td>";

 }
  return (strCeldas);
 }