function dibuja_celdas(ancho,alto, title, claseNS, claseIE, claseLetra, link, texto, extras, parametros, identificador, indtabulador){
var strCeldas = new String();
	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 href='# ' class='" + claseLetra + "' >" + texto + "</a></td>";

	document.write (strCeldas);
}

function dame_dibuja_celdas(ancho,alto, title, claseNS, claseIE, claseLetra, link, texto, extras, parametros, identificador, indtabulador){
var strCeldas = new String();
	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 href='# ' class='" + claseLetra + "' >" + texto + "</a></td>";

	return strCeldas;
}

function dibuja_celdas_2(ancho,alto, title, claseNS, claseIE, claseLetra, link, texto, extras, parametros, identificador, indtabulador){
var strCeldas = new String();
	strCeldas = "<td tabIndex='" + indtabulador + "' " + extras + " width='" + ancho + "' height='" + alto + "' align='center' title='" + title + "' class='" + claseIE + "'>";	
	strCeldas = strCeldas + "<a style='width:100%' href='#" + link + "' class='" + claseLetra + "' >" + texto + "</a>";	
	strCeldas = strCeldas + "</td>"
	document.write (strCeldas);
}